-
个人简介
成分复杂🤣 摸鱼的小网站 image.png 本人缺省源:
#include<bits/stdc++.h> #pragma GCC optimize(2) using namespace std; inline void read(int &x){//快读 char ch=getchar();int f=1;x=0; while(!isdigit(ch) && ch^'-') ch=getchar(); if(ch=='-') f=-1,ch=getchar(); while(isdigit(ch)) x=x*10+ch-'0',ch=getchar(); x*=f; } inline void write(int x){ if(x<0){ putchar('-'); x=-x; } if(x>9) write(x/10); putchar(x%10+'0'); } const int N=1e6+5; int a[N]; int cnt=0; int ans[N]; vector<int>vt[N]; int main(){ int n; read(n); write(n); return 0; }
-
通过的题目
-
最近活动
题目标签
- 初窥门径
- 8
- 蓝桥杯
- 8
- 模拟
- 6
- 驾轻就熟
- 5
- 略有小成
- 5
- 字符串
- 4
- 循环结构
- 3
- 分支结构
- 2
- 其他
- 2
- 排序
- 2
- 搜索
- 2
- 枚举
- 2
- 顺序结构
- 1
- 位运算
- 1
- 暴搜
- 1
- 循环嵌套
- 1
- 数论
- 1
- 融会贯通
- 1
- 贪心
- 1
- 数据结构
- 1