-
个人简介
#include <bits/stdc++.h> using namespace std; inline int read() { int x = 0, f = 1; char ch = getchar(); while (ch > '9' || ch < '0') { if(ch == '-') f = -f; ch = getchar(); } while (ch >= '0' && ch <= '9') { x = x * 10 + ch - '0'; ch = getchar(); } return x * f; }//快读 int main() { //ios::sync_with_stdio(0), cin.tie(0), cout.tie(0); //freopen("E:\\in.txt","r",stdin); //freopen("E:\\out.txt","w",stdout); //fclose(stdin); //fclose(stdout); return 0; }
-
通过的题目
-
最近活动
This person is lazy and didn't join any contests or homework. -
最近编写的题解
This person is lazy and didn't write any solutions. -
Stat
-
Rating
题目标签
- 模拟
- 21
- NOIp 普及组
- 15
- 字符串
- 11
- 枚举
- 9
- 暴力
- 9
- 数论
- 5
- 数学
- 5
- 递归
- 4
- 搜索
- 4
- 素数判断
- 3
- 质数
- 3
- 筛法
- 3
- 洛谷原创
- 3
- 2002
- 2
- 2004
- 2
- 2005
- 2
- 2008
- 2
- 2011
- 2
- NOIp 提高组
- 2
- USACO
- 2