QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#568423 | #9320. Find the Easiest Problem | 01_Dreamer | WA | 0ms | 3608kb | C++17 | 668b | 2024-09-16 16:25:34 | 2024-09-16 16:25:35 |
Judging History
answer
#include<iostream>
#include<cstring>
using namespace std;
int cnt[30];
int main()
{
int T;
cin>>T;
while(T--)
{
memset(cnt,0,sizeof cnt);
int n;
cin>>n;
char id;
string st;
while(n--)
{
cin>>st>>id>>st;
if(st=="accepted") cnt[id-'A']++;
}
int maxv=-2e9,max_pos=-1;
for(int i=0;i<26;i++)
if(cnt[i]>maxv)
{
maxv=cnt[i];
max_pos=i;
}
char res='A'+max_pos;
cout<<res<<endl;
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3608kb
input:
2 5 teamA A accepted teamB B rejected teamC A accepted teamB B accepted teamD C accepted 4 teamA A rejected teamB A accepted teamC B accepted teamC B accepted
output:
A B
result:
wrong answer 2nd lines differ - expected: 'A', found: 'B'