QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#591511 | #9320. Find the Easiest Problem | mmzskm | WA | 0ms | 3568kb | C++17 | 702b | 2024-09-26 16:15:18 | 2024-09-26 16:15:19 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
void solve()
{
int n;
cin >> n;
vector<string> v(500);
map<string, int> m;
for (int i = 0; i < n; i++)
{
string t, p, s;
cin >> t >> p >> s;
if (s == "accepted" && v[t[4] - 'A'].find(p[0]) == -1) // t队的p题还没AC
{
m[p]++;
v[t[4] - 'A'].push_back(p[0]);
}
}
int maxn = -1;
string ans;
for (auto i : m)
{
if (maxn <= i.second)
{
maxn = i.second;
ans = min(i.first, ans);
}
}
cout << ans << endl;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int T = 1;
cin >> T;
while (T--)
{
solve();
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3568kb
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:
wrong answer 1st lines differ - expected: 'A', found: ''