# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
931597 | 2024-02-22T06:24:10 Z | lamter | Ancient Machine (JOI21_ancient_machine) | C++17 | 0 ms | 0 KB |
#include "Anna.h" #include <bits/stdc++.h> void Anna(int n, std::vector <char> a) { bool found = 0; for (int i = 0; i < n; i += 1) { int bit = 0; if (not found and a[i] == 'X') { bit = 1; found = true; } if (found and a[i] == 'Z') { bit = 1; } Send(bit); } }