QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#574674 | #9320. Find the Easiest Problem | winterl | WA | 1ms | 6160kb | C++20 | 811b | 2024-09-18 23:44:15 | 2024-09-18 23:44:15 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
map<string,int> m;
int a[27];
bool vis[100000][27];
auto solve() {
fill(a,a+27,0);
fill(vis[0],vis[0]+27*100000,0);
int n;
cin>>n;
int j = 1;
for (int i = 1; i <= n; i++) {
string s1,s2;
char zm;
cin>>s1;
cin>>zm;
cin>>s2;
if (m.find(s1) == m.end()) {
m[s1] = j++;
}
if(vis[m[s1]][zm - 'A'+1] and s2 == "accepted") {
a[zm - 'A'+1]++;
}
}
int ans = 0;
for (int i = 1; i <= 26; i++) {
ans = max(a[i],ans);
}
cout<<char(ans+65);
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int64_t t;
cin >> t;
while(t--)
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 6160kb
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:
AA
result:
wrong answer 1st lines differ - expected: 'A', found: 'AA'