Yesterday is history. Tomorrow is a mystery. But today is a gift. That is why it’s called the present.
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《为何CE(蒟蒻一个)》回复:
已过, 谢谢
为何CE ```cpp #include using namespace std; int n, m, f[10005], ans; struct node{ int t, x, y; }a[10005]; int main(){ ios::sync_with_stdio(0); cin.tie(0), cout.ti…
在文章《出题寄(贰)》发表评论:
Oh, Chinese round!!
在文章《回忆录》发表评论:
我们行走在同一条看起来是捷径的路上,玩着同一个一局定胜负的赌博游戏。成功者功成名就,失败者血本无归。当初几个煮酒论成败的少年,因为这名为前途的幻想而聚集,又终因幻想的成就或破灭而分离。
在文章《从县中到北大——浅记成功的高考与失败的竞赛经历》发表评论:
%%%%%%%%%%
在文章《P3368 题解》发表评论:
%%%
在讨论《80求调(第四个点错了)》回复:
```cpp #include using namespace std; char A[550],B[550]; int A1[550],B1[550],C[550]; int main(){ scanf("%s",A); scanf("%s",B); memset(C,0,sizeof(C)); for(int i=…
在讨论《20求条!!!》回复:
```cpp #include using namespace std; int main(){ int k,l,r,sum=0; cin>>k>>l>>r; for(int i=l;i<=r;i++){ if(i%k==0 || i%10==k){ sum+=i; } } cout<<sum; return 0; }