/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 556.0 KiB
#2 Accepted 6ms 572.0 KiB
#3 Accepted 2ms 540.0 KiB
#4 Accepted 81ms 540.0 KiB
#5 Accepted 80ms 568.0 KiB
#6 Accepted 57ms 788.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define bug(a) cout << #a << " : " << a << endl;

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int t = 1; cin >> t;
    while (t--) {
        int n,d; cin >> n>>d;
        vector<int> v(n);
        int xo=0;
        for (int i = 0; i < n; i++) {
            cin >> v[i];
            xo^=v[i];
        }
        if(!xo)cout<<"Kamona"<<endl;
        else cout<<"Hridoy"<<endl;
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1118 Stone Duel
Language
C++17 (G++ 13.2.0)
Submit At
2024-12-13 12:19:05
Judged At
2024-12-13 12:19:05
Judged By
Score
100
Total Time
81ms
Peak Memory
788.0 KiB