摘要: Aimee 水到家了 #include<iostream> #include<cstdio> using namespace std; long long n; int main(){ scanf("%lld",&n); if(n%4==0){ cout<<n; return 0; } if(n%4 阅读全文
posted @ 2020-11-22 21:33 Simex 阅读(87) 评论(0) 推荐(0) 编辑
摘要: Aimee 很简单的xor题目 #include<iostream> #include<cstdio> #include<cstring> using namespace std; int ans; int n; int x; int main(){ scanf("%d",&n); for(int 阅读全文
posted @ 2020-11-22 20:08 Simex 阅读(71) 评论(0) 推荐(0) 编辑
摘要: Miku 很简单的背包,除了我一开始统计错了路径 #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; int m,v,n; int a[101],b[101],c 阅读全文
posted @ 2020-11-22 19:16 Simex 阅读(64) 评论(0) 推荐(0) 编辑