/ SeriousOJ /

Record Detail

Wrong Answer


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

Code

#include<bits/stdc++.h>
using namespace std;
const long long M=2e5+10,MOD=1000000007;
typedef long long ll;
int fre[26][M];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    int t=1;
   // cin>>t;
    while(t--){
    
       int n;
       cin>>n;
       string s;
       cin>>s;
       int emon=0,mahfuz=0,both=0;
       for(char ch:s){
       // both+=(ch=='?');
        emon+=(ch=='E');
        mahfuz+=(ch=='M');
       }
       if(mahfuz==emon){
        cout<<"IDK\n";
        continue;
       }
       if(mahfuz>emon)cout<<"Mahfuz\n";
       else cout<<"Emon\n";

    
   }
   return 0;
 
}

Information

Submit By
Type
Submission
Problem
P1031 Clash of programmers
Contest
Brain booster #2
Language
C++20 (G++ 13.2.0)
Submit At
2024-03-06 14:31:08
Judged At
2024-11-11 03:41:54
Judged By
Score
20
Total Time
1ms
Peak Memory
532.0 KiB