제출 #1130404

#제출 시각아이디문제언어결과실행 시간메모리
1130404mnbvcxz123Coins (IOI17_coins)C++20
컴파일 에러
0 ms0 KiB
#include <coins.h> #include <bits/stdc++.h> using namespace std; mt19937 rng(chrono::steady_clock().now().time_since_epoch().count()); vector<int> coin_flips(vector<int> b,int c) { int xr = 0; for (int i = 0;i<64;i++) if (b[i])xr^=i; vector<int> a;a.push_back(xr^c); return a; } int find_coin(vector<int> b) { int xr = 0; for (int i = 0;i<64;i++) if (b[i]) xr^=i; return xr; }

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

coins.cpp:1:10: fatal error: coins.h: No such file or directory
    1 | #include <coins.h>
      |          ^~~~~~~~~
compilation terminated.