QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#392997#8549. The Gameucup-team2894WA 0ms3556kbC++20348b2024-04-18 02:28:222024-04-18 02:28:23

Judging History

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

  • [2024-04-18 02:28:23]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3556kb
  • [2024-04-18 02:28:22]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

void solve() {
int n;
cin >> n;
map<int,int> nums;
for(int i=0;i<2*n;i++){
int x;
cin >> x;
nums[x]++;
}
int tot = 0;
for(auto [a,b] : nums) {
tot += b-1;
}
if(tot<=n-1)cout << "Kevin\n";
else cout << "Qingqu\n";
}

int main () {
ios::sync_with_stdio(0);
cin.tie(0);
solve();
}

详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3556kb

input:

3
3
1 1 4 5 1 4
2
1 2 3 4
4
1 2 2 3 2 1 1 4

output:

Kevin

result:

wrong answer 1st words differ - expected: 'Qingyu', found: 'Kevin'