我为忘川举牌\\国无恒强,奉法者强则国强
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; long long n,a[55]={0},sum=1; int main() { cin>>n; for(long long i=0;i >a[i]; sum*=a[i]; } if(sum>1000000) cout 100000"<<end…
这题打表麻烦但是还是可以AC的 ```cpp if(n =9&&n =11&&n =22&&n =33&&n =44&&n =55&&n =66&&n =77&&n =88&&n =99&&n =111&&n =222&&n =333&&n =444&&n =555&&n =666&&n =777&&n =888&&n…
```cpp #include using namespace std; int t,a[100001]={0},b; int sici(int a) { for(long long int i=1;i >t; for(int i=0;i >a[i]; if(sici(a[i])==0) cout<<"-1"<<end…
在讨论《洛谷 2025 年鉴》回复:
qp
在讨论《洛谷管理组春节休假安排 (2026)》回复:
qp
在讨论《入门赛#42/基础赛#29 作弊名单》回复:
qp
在讨论《咕值计算更新声明》回复:
qp
在文章《【黑粉】(整活)我的网恋对象不可能是男孩子!(叁)(deepseek 续写)》发表评论:
太极八荒了
在文章《【黑粉】(整活)我的网恋对象不可能是男孩子!(二)(deepseek 续写)》发表评论:
太极八荒了
在讨论《RemoteJudge 服务中断情况公告》回复:
骨灰
```cpp #include using namespace std; long a,b,c; long long l; int gcd(int a,int b) { int l=max(a,b); for(int i=l;;i++) { if(i%a==0&&i%b==0) return i; } } int ma…
在讨论《为什么写上+2就满分,没写就十分?》回复:
虽然有些想用函数但还是用的这个
```cpp #include using namespace std; int a[101][101]={ },b[101][101]={ },n,m; int main() { cin>>n>>m; for(int i=0;i >a[i][j]; for(int i=0;i<n;i++) { for(int j=0…
在讨论《20》回复:
@[cbh_bbh](luogu://user/1121500) 好的谢谢老师
```cpp #include using namespace std; int a[101][101]; int main() { int m,n; cin>>m>>n; for(int i=0;i >a[i][j]; } } for(int i=0;i<m;i++) { for(int j=0;j<n;j++) {…
在讨论《为什么会全错qwq》回复:
@[A_Step_Back](luogu://user/699380)好的谢谢
```cpp #include using namespace std; int main() { int m,n,a[101][101],b[101][101],c[101][101]={0}; cin>>m>>n; for(int i=0;i >a[i][j]; for(int i=0;i >b[i][j]; fo…
```cpp #include using namespace std; struct student{ long long StudentID; double grade; }; student a[101]; int n,k; int main() { cin>>n>>k; for(int i=1;i >a[i].…
```cpp #include using namespace std; struct student{ long StudentID; double grade; }; student a[101]; int n,k; int main() { cin>>n>>k; for(int i=1;i >a[i].Stude…
在文章《嘟嘟嘟大学习》发表评论:
wow~ ⊙o⊙
```cpp #include using namespace std; int turn(int B,int x) { int value=1,x_B=0; while(x!=0) { if((x%10)>=B) return 2147483647; x_B+=(x%10)*value; value*=B; x/=1…
在讨论《为什么会多一个逗号啊;求调qwq》回复:
@[lijingshu_304775](luogu://user/1019968) 我也不大
在讨论《为什么会多一个逗号啊;求调qwq》回复:
@[Sweet_2013](luogu://user/1570347)@[koukilee](luogu://user/907119)@[Fish_and_Chips_](luogu://user/479532) 好的,谢谢各位老师
在讨论《为什么会多一个逗号啊;求调qwq》回复:
@[koukilee](luogu://user/907119) 可是我有些不懂该怎么改额。。。
```cpp #include using namespace std; bool prime(int n){ if(n 0) { y = y * 10 + x % 10; // 累加末位到逆序数 x = x / 10; // 移除末位 } return y; } int main() { int m,n,b; cin…
在讨论《为什么输出许多商?求调owo》回复:
@[枫原千叶](luogu://user/703487) 好的,谢谢老师,以后会改的
```cpp #include using namespace std; bool prime(int n){ if(n >m>>n; for(int i=m;i =2;j--) { if(i%j==0) cout<<i/j; } continue; } if(i!=n) { cout<<","; } } return…
```cpp #include using namespace std; char b[26]={'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; int c…
~~这题居然能交~~`` # 定义英文数字单词及其对应的字母位置列表(A=0, B=1, ..., Z=25) num_words = { 'zero': [25, 4, 17, 14], 'one': [14, 13, 4], 'two': [19, 22, 14], 'three': [19, 7, 4, 17,…