제출 #648604

#제출 시각아이디문제언어결과실행 시간메모리
648604a_aguiloCoins (IOI17_coins)C++14
컴파일 에러
0 ms0 KiB
#include "coins.h"
#include<bits/stdc++.h>

using namespace std;

vector<int> coin_flips(vector<int> b, int c) {
    vector<int> flips(1);
    int TotalXOR = 0;
    for(int i = 0; i < 64; ++i){
        if(b[i]) TotalXor ^= i;
    }
    flips[0] = TotalXOR^c;
    return flips;
}

int find_coin(vector<int> b) {
    int ans = 0;
    for(int i = 0; i < 64; ++i){
        if(b[i]) ans^=i;
    }
    return ans;
}

컴파일 시 표준 에러 (stderr) 메시지

coins.cpp: In function 'std::vector<int> coin_flips(std::vector<int>, int)':
coins.cpp:10:18: error: 'TotalXor' was not declared in this scope; did you mean 'TotalXOR'?
   10 |         if(b[i]) TotalXor ^= i;
      |                  ^~~~~~~~
      |                  TotalXOR