QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#391533#8549. The Gameucup-team1251WA 0ms3696kbC++20376b2024-04-16 17:02:112024-04-16 17:02:11

Judging History

你现在查看的是最新测评结果

  • [2024-04-16 17:02:11]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3696kb
  • [2024-04-16 17:02:11]
  • 提交

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'