/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 1ms 344.0 KiB
#2 Wrong Answer 1ms 532.0 KiB
#3 Wrong Answer 2ms 532.0 KiB

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-08-17 05:52:44
Judged By
Score
0
Total Time
2ms
Peak Memory
532.0 KiB