06 2024 档案
摘要:A link …… 点击查看代码 #include<bits/stdc++.h> using namespace std; string s,t; signed main(){ cin >> s >> t; if(s == "AtCoder"&&t == "Land") cout << "Yes";
阅读全文
摘要:A link 循环加每一个数,加到哪个数不能加了输出前一个数,注意如果加到最后还能加,记得输出 。 点击查看代码 #include<bits/stdc++.h> using namespace std; int n,m; int h[105],sum; signed main(){ cin
阅读全文
摘要:引言:__int128不能用 或 。 快读 思想:把每一个字符读入,组成数字。 int read(){ int x = 0,y = 1;//x代表那个数的绝对值,y代表符号 char ch = getchar(); while(ch <
阅读全文
摘要:A link 把 ~ 和 ~ 部分顺序输出 ~ 部分逆序输出。 点击查看代码 #include<bits/stdc++.h> using namespace std; int n,l,r; signed main(){ cin
阅读全文