(UPD: 2024-12-04 14:48 UTC) Judge is not working due to Cloudflare incident. (URL) We can do nothing about it, sorry. After the incident is resolved, we will grade all submissions.

Submission #1112808

#TimeUsernameProblemLanguageResultExecution timeMemory
1112808julia_08Coins (IOI17_coins)C++17
0 / 100
7 ms1508 KiB
#include "coins.h" #include <bits/stdc++.h> using namespace std; vector<int> coin_flips(vector<int> b, int c){ vector<int> flips; int x = 0; for(int i=0; i<(int) b.size(); i++) x ^= b[i]; flips.push_back(x ^ c); return flips; } int find_coin(vector<int> b){ int coin = 0; for(int i=0; i<(int) b.size(); i++) coin ^= b[i]; return coin; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...