Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
6087 周景轩 划拳 C++ 通过 100 0 MS 248 KB 373 2020-08-23 19:30:40

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int t,x[101],y[101]; cin>>t; for(int i=1;i<=t;i++){ cin>>x[i]>>y[i]; } for(int i=1;i<=t;i++){ if(x[i]==y[i]) cout<<"DOGFALL"; else if(x[i]+y[i]>6){ if(x[i]>y[i]) cout<<"YY"; else cout<<"XDZ"; }else if(x[i]<y[i]) cout<<"YY"; else cout<<"XDZ"; cout<<endl; } return 0; }


测评信息: