标签:des style blog http color java os strong
先上题目:
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/65535 K (Java/Others)
Total Submission(s): 1104 Accepted Submission(s): 686
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 int t,n,x,y,ans; 7 ios::sync_with_stdio(false); 8 cin>>t; 9 while(t--){ 10 cin>>n; 11 ans=0; 12 for(int i=0;i<n;i++){ 13 cin>>x>>y; 14 ans^=(x%(y+1)); 15 } 16 if(ans) cout<<"No"<<endl; 17 else cout<<"Yes"<<endl; 18 } 19 return 0; 20 }
HDU - 1851 - A Simple Game,布布扣,bubuko.com
标签:des style blog http color java os strong
原文地址:http://www.cnblogs.com/sineatos/p/3888841.html