(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 #306238

#TimeUsernameProblemLanguageResultExecution timeMemory
306238LawlietCoins (IOI17_coins)C++17
100 / 100
12 ms1832 KiB
#include "coins.h" #include <bits/stdc++.h> using namespace std; int getValue(vector<int> b) { int ans = 0; for(int i = 0 ; i < 64 ; i++) if( b[i] == 1 ) ans ^= i; return ans; } int find_coin(vector<int> b) { return getValue(b); } vector<int> coin_flips(vector<int> b, int c) { return vector<int>( 1 , getValue(b)^c ); }
#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...