Problem Solution

1 solutions

  • 0
    @ 2024-11-03 01:14:03
    #include <bits/stdc++.h>
    using namespace std;
    #define SC               scanf
    #define PF               printf
    #define ull              unsigned long long
    #define ld               long double
    #define F                first
    #define S                second
    #define pb               push_back
    #define sort_a(a)        sort(a.begin(),a.end());
    #define sort_d(a)        sort(a.rbegin(),a.rend());
    #define READ(f)          freopen(f, "r", stdin)
    #define WRITE(f)         freopen(f, "w", stdout)
    #define rev(s)           reverse(s.begin(),s.end())
    #define P(ok)            cout << (ok ? "YES\n": "NO\n")
    #define __Heart__              ios_base :: sync_with_stdio(false); cin.tie(NULL);
    #define ll long long
    typedef pair< ll , ll>                   PII;
    void solve()
    {
       ll n , k , x = 0 , c ; cin >> n >> k ;
       for(int i = 0 ; i < n ; i++) cin >> c ,  x ^= c ;
       if(x == 0) cout << "Kamona\n" ;
       else cout << "Hridoy\n" ;
    }
    int main()
    {
         __Heart__
       //  READ("input5.txt") ;
       //  WRITE("output5.txt") ;
         int t ; cin >> t ; while(t--) solve() ;
    }
    
    
  • 1

Information

ID
1118
Difficulty
7
Category
Games Click to Show
Tags
# Submissions
15
Accepted
8
Accepted Ratio
53%
Uploaded By