/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 1ms 320.0 KiB
#2 Wrong Answer 1ms 324.0 KiB
#3 Wrong Answer 1ms 320.0 KiB

Code

#include <iostream>
using namespace std;
int main()
{
    int t;
	cin>>t;
	cin.ignore();
	for(int i=0;i<t;i++)
	{
		int p=0,q=0;
		  string x;
    	  getline(cin,x);
		for(int j=0;j<x.length();j++)
		{
			if(x[j]=='p')
			{
				p++;
			}
			else{q++;}
		}
		if(p>q){cout<<"Roy"<<endl;}
		else if(q>p){cout<<"Mahfuj"<<endl;}
		else{cout<<"Draw"<<endl;}
    }
}

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 17:02:30
Judged At
2024-10-03 13:56:10
Judged By
Score
0
Total Time
1ms
Peak Memory
324.0 KiB