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 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.