# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1051271 | 2024-08-10T02:57:06 Z | vjudge1 | Shopping (JOI21_shopping) | C++17 | 0 ms | 0 KB |
#include "Anna.h" #include <vector> namespace { int N, L, R; int count; } // namespace void InitA(int N, int L, int R) { ::N = N; ::L = L; ::R = R; count = 1; for(int i=18;i--;) SendA(L>>i&1); } std::vector<int>bools; void ReceiveA(bool x) { bools.push_back(x); } int Answer() { for(int i=R;;i--) if(bools[i-L]) return i; return -1; }