上一页 1 ··· 8 9 10 11 12
摘要: 点击查看代码 #include<bits/stdc++.h> using namespace std; int m; int main() { scanf("%d",&m); for(int k1=sqrt(2*m);k1>1;k1--){ if(2*m%k1==0&&(k1+2*m/k1)%2){ 阅读全文
posted @ 2025-11-21 10:31 AnoSky 阅读(8) 评论(0) 推荐(0)
摘要: 广东工业新手赛 我不吃水果 点击查看代码 #include <iostream> using namespace std; const int N = 1005; int n, pre[N][N], ans; int main() { cin >> n; for (int i = 1; i <= n; i++) { for ( 阅读全文
posted @ 2025-11-20 00:41 AnoSky 阅读(6) 评论(0) 推荐(0)
摘要: 点击查看代码 #include<bits/stdc++.h> using namespace std; int n; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); cin>>n; int 阅读全文
posted @ 2025-11-20 00:28 AnoSky 阅读(3) 评论(0) 推荐(0)
摘要: 点击查看代码 #include<bits/stdc++.h> using namespace std; int t,n,x; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); cin>>t; 阅读全文
posted @ 2025-11-19 23:41 AnoSky 阅读(4) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12