/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 536.0 KiB
#2 Accepted 4ms 532.0 KiB
#3 Accepted 2ms 532.0 KiB
#4 Accepted 74ms 532.0 KiB
#5 Accepted 75ms 532.0 KiB
#6 Accepted 73ms 532.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define bug(a) cout<< #a << " : " << a <<endl;
#define bug2(a, b) cout<< #a << " : " << a  << " " << #b << " : " << b << endl;

void solve(int cs){
    int n, k;
    cin >> n >> k;
    int ans = 0;
    for(int i = 0;i < n;i++){
        int x;
        cin >> x;
        ans ^= x;
    }
    if(ans) cout << "Hridoy\n";
    else cout << "Kamona\n"; 
}


int main(){
    ios_base::sync_with_stdio(false);cin.tie(0);
    cout.tie(0);

    int tc = 1;
    cin >> tc;

    for(int cs = 1; cs <= tc; cs++){
        solve(cs);
    }
}

Information

Submit By
Type
Submission
Problem
P1118 Stone Duel
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-03 17:51:40
Judged At
2024-11-03 17:51:40
Judged By
Score
100
Total Time
75ms
Peak Memory
536.0 KiB