QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#566860#9320. Find the Easiest ProblemrlaaaTL 0ms0kbC++23824b2024-09-16 02:32:262024-09-16 02:32:27

Judging History

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

  • [2024-09-16 02:32:27]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:0kb
  • [2024-09-16 02:32:26]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin >> t;
    while (t--) {
        unordered_map <string, int> mp;//队名
        int k,co[26]={0};
        cin >> k;
        for (int i = 0; i < k; k++) {
            string team, answer;
            char qus;
            cin >> team >> qus >> answer;
            if (answer == "accepted") {
                if (mp[team] >>(qus-'A') &1) continue;

                mp[team]|=1<<(qus-'A');
                co[qus-'A']++;
            }
        }
        int maxx = -1;char maxname;
        for(int i=0;i<26;i++){
            if(maxx<co[i]) {
                maxx=co[i];maxname=i+'A';
            }
        }
       cout<<maxname<<'\n';
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Time Limit Exceeded

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:


result: