/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 348.0 KiB
#2 Wrong Answer 1ms 532.0 KiB
#3 Accepted 1ms 532.0 KiB
#4 Time Exceeded ≥1100ms ≥328.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define nl '\n'
int main() {
    int t; cin >> t;
    while(t--){
        int n; cin >> n;
        int xr = 0;
        while(n--){
            int v; cin >> v;
            xr ^= v;
        }
        cout << (!xr?"Kamona\n":"Hridoy\n");
    }
}

Information

Submit By
Type
Submission
Problem
P1118 Stone Duel
Contest
Sylhet ICPC 2024 Collaborative Challenge: Episode 2
Language
C++17 (G++ 13.2.0)
Submit At
2024-10-30 09:56:06
Judged At
2024-10-30 09:56:06
Judged By
Score
30
Total Time
≥1100ms
Peak Memory
≥532.0 KiB