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

#TimeUsernameProblemLanguageResultExecution timeMemory
829560birthdaycakeCoins (IOI17_coins)C++17
100 / 100
8 ms1376 KiB
#include<bits/stdc++.h> #include "coins.h" using namespace std; vector<int> coin_flips(vector<int> b, int c) { int xx = 0; vector<int>ans; for(int i = 0; i < b.size(); i++){ if(b[i]) xx^= i; } ans.push_back(xx ^ c); return ans; } int find_coin(vector<int> b) { int fin = 0; for(int i = 0; i < b.size(); i++){ if(b[i]) fin ^= i; } return fin; }

Compilation message (stderr)

coins.cpp: In function 'std::vector<int> coin_flips(std::vector<int>, int)':
coins.cpp:10:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   10 |     for(int i = 0; i < b.size(); i++){
      |                    ~~^~~~~~~~~~
coins.cpp: In function 'int find_coin(std::vector<int>)':
coins.cpp:19:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   19 |     for(int i = 0; i < b.size(); i++){
      |                    ~~^~~~~~~~~~
#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...