摘要: A题 没看懂,数学水平达不到…… 最后是x可以被gcd(a,b)除后为偶数 #include<algothrim> #include<iostream> using namespace std; int gcd(int x,int y) { if(x%y==0) return y; return g 阅读全文
posted @ 2020-05-11 08:48 Leviathan_Sei 阅读(98) 评论(0) 推荐(0)
摘要: 5.2 2020年西北工业大学“编程之星”程序设计挑战赛(大学生程序设计创新实践基地队员春季选拔赛) A https://ac.nowcoder.com/acm/contest/5403/A #include<bits/stdc++.h> using namespace std; int n,m,a 阅读全文
posted @ 2020-05-11 08:40 Leviathan_Sei 阅读(98) 评论(0) 推荐(0)