QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#574674#9320. Find the Easiest ProblemwinterlWA 1ms6160kbC++20811b2024-09-18 23:44:152024-09-18 23:44:15

Judging History

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

  • [2024-09-18 23:44:15]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:6160kb
  • [2024-09-18 23:44:15]
  • 提交

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'