QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#578909#9320. Find the Easiest ProblemthezhyWA 0ms3752kbC++17498b2024-09-20 22:42:312024-09-20 22:42:32

Judging History

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

  • [2024-09-20 22:42:32]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3752kb
  • [2024-09-20 22:42:31]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
int t,n,mmax=-1;
string str,ss;
char c;
map<char,int> mp;
set<string> s[15];
int ans;
int main(){
	cin>>t;
	while(t--){
		cin>>n;
		mmax=-1;
	    mp.clear();
		while(n--){
			cin>>str>>c>>ss;
			if(ss=="accepted"){
				s[c-'A'].insert(str);
			}
		}
		mmax=s[0].size();
		ans='A';
		for(int i=1;i<=25;i++){
			if(s[i].size()>mmax){
				ans=i+'A';
				mmax=s[i].size();
			}
		}
		printf("%c\n",ans);
	}
}

詳細信息

Test #1:

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

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:

P
P

result:

wrong answer 1st lines differ - expected: 'A', found: 'P'