Accepted
Code
/*
CODED BY mamudulsakib2019
DATE:-24/03/2024 ; TIME- 17:47 PM
BANGLADESH , SYLHET
*/
#include<bits/stdc++.h>
using namespace std;
typedef unsigned long long ll;
int main() {
int T;
cin >> T;
while(T--) {
string S;
cin >> S;
int countP = count(S.begin(), S.end(), 'p');
int countQ = count(S.begin(), S.end(), 'q');
if(countP > countQ) {
cout << "Roy\n";
} else if(countQ > countP) {
cout << "Mahfuj\n";
} else {
cout << "Draw\n";
}
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1040 Character game
- Contest
- TLE_Headquarters - round #1
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-03-27 16:18:06
- Judged At
- 2024-11-11 03:39:07
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 324.0 KiB