Accepted
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
string s;
cin >> s;
int p = 0, q = 0;
for (auto &c : s) {
if (c == 'p') p += 1;
else q += 1;
}
if (p > q) cout << "Roy\n";
else if (q > p) cout << "Mahfuj\n";
else cout << "Draw\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
- P1040 Character game
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-10 18:39:46
- Judged At
- 2024-11-11 03:28:00
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 324.0 KiB