-
个人简介
Piaoztsdy (pztsdy/pztsdy2023)
QQ:
Welcome to my website
An interesting video
临时主页:
$\texttt{\colorbox{#ff0101}{Get Error:}\colorbox{#cccccc}{Cannot connect to PIAOZTSDY's server!}}$ $\texttt{\colorbox{#ddd}{Click \color{#3498db}{here} \color{#333}to find the help.\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ }}$
$$\small{\text{如果你认为某个同学有问题,欢迎向 TouchFish OJ 反馈,以帮助更多的同学。}}$$ $$\color{#dedede}\boxed{\color{black}\text{ 此人太菜了,严重拉低 TouchFish OJ 平均水平~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}$$$$\small\color{#0e90d2}\text{取消~~~~~~~~~~~~~~~~~~~~~~~~}\color{#dedede}\text{|}\color{#0e90d2}\text{~~~~~~~~~~~~~~~~~~~~~~~~确定}$$
回到顶部
快读快写
#include <bits/stdc++.h> using namespace std; #ifdef __unix__ #define getchar getchar_unlocked #define putchar putchar_unlocked #else #define getchar _getchar_nolock #define putchar _putchar_nolock #endif void faprint(long long n) { if (n < 0) { putchar('-'); n = -n; } if (n > 9) { faprint(n / 10); } putchar(n % 10 + '0'); } long long faread() { long long x = 0; bool f = true; char ch = getchar(); for (; ch < '0' || ch > '9'; ch = getchar()) { if (ch == '-') f = false; } for (; ch >= '0' && ch <= '9'; ch = getchar()) { x = (x << 3) + (x << 1) + (ch ^ '0'); } return f ? x : -x; } int main() { return 0; } -
通过的题目
-
最近活动
-
最近编写的题解
题目标签
- 基础算法
- 8
- 语言基础
- 7
- 其他
- 7
- 数学
- 6
- 递推
- 3
- 模拟
- 3
- 循环结构
- 2
- 数组
- 2
- 动态规划
- 2
- 贪心
- 2
- 递归
- 2
- 优化
- 2
- 前缀和
- 2
- 排序
- 1
- 结构体
- 1
- 差分
- 1
- 高精度
- 1
- 搜索
- 1
- 枚举
- 1