Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
int main(){
int t; cin >> t;
while(t--){
string s;
cin >> s;
int pcount = 0;
int qcount = 0;
for(int i=0; i<s.size(); i++){
if(s[i] == 'p'){
pcount++;
}else{
qcount++;
}
}
if(pcount > qcount){
cout<< "Mahfuj" << endl;
}
else if(qcount > pcount){
cout << "Roy" << endl;
}else{
cout << "Draw" << endl;
}
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1040 Character game
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-08-17 05:52:44
- Judged At
- 2024-11-11 03:09:38
- Judged By
- Score
- 0
- Total Time
- 2ms
- Peak Memory
- 380.0 KiB