Codeforces 703 A. Mishka and Game Solution

Solve in c++:


#include<bits/stdc++.h>
using namespace std;
main(){


int t,i,a,b,m=0,c=0;
while(cin>>t)
{
    for(i=0;i<t;i++)
    {
        cin>>a>>b;
        if(a>b)
        m++;
        else if(b>a)
        c++;
    }
    if(m>c)
    cout<<"Mishka"<<endl;
    else if(c>m)
    cout<<"Chris"<<endl;
    else
    cout<<"Friendship is magic!^^"<<endl;
    c=0,m=0;

}

c=0,m=0;


}





No comments

Most View Post

Recent post

Codeforces Round 971 (Div. 4) 2009C. The Legend of Freya the Frog Solution

  Problem Link    https://codeforces.com/contest/2009/problem/C S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. h &g...

Powered by Blogger.