Wrong Answer
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
string s;
cin >> s;
map<char,int> cnt;
for (auto it : s) cnt[it] += 1;
if (cnt['M'] > cnt['E']) cout << "Mahfuz\n";
else if (cnt['E'] > cnt['M']) cout << "Emon\n";
else cout << "IDK\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
// cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1031 Clash of programmers
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-14 08:58:02
- Judged At
- 2024-11-11 03:26:21
- Judged By
- Score
- 20
- Total Time
- 2ms
- Peak Memory
- 548.0 KiB