QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#391533 | #8549. The Game | ucup-team1251 | WA | 0ms | 3696kb | C++20 | 376b | 2024-04-16 17:02:11 | 2024-04-16 17:02:11 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std ;
#define int long long
const int N = 2e6 + 9 ;
int n;
int a[N];
void solve()
{
cin>>n;
for(int i=1;i<=2*n;i++)
{
cin>>a[i];
}
cout<<"Qingyu"<<"\n";
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int T=1;
cin>>T;
while(T--)
{
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3696kb
input:
3 3 1 1 4 5 1 4 2 1 2 3 4 4 1 2 2 3 2 1 1 4
output:
Qingyu Qingyu Qingyu
result:
wrong answer 2nd words differ - expected: 'Kevin', found: 'Qingyu'