# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
417127 | 2021-06-03T12:01:08 Z | tqbfjotld | Ancient Machine (JOI21_ancient_machine) | C++17 | 30 ms | 3328 KB |
#include "Anna.h" #include <vector> using namespace std; ///17 bits for 1st X, N bits for isZ void Anna(int N, std::vector<char> S) { int Xpos = -1; int Zpos = -1; for (int x = 0; x<N; x++){ if (S[x]=='Z') Zpos = x; if (Xpos==-1 && S[x]=='X') Xpos = x; } for (int x = 16; x>=0; x--){ Send((bool)(Xpos&(1<<x))); } for (int x = 0; x<N; x++){ Send(S[x]=='Z'); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 492 KB | Wrong Answer [6] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 30 ms | 3328 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |