# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
148796 | 2019-09-01T05:08:25 Z | =SUM(D1:D9)(#3629, ydk1104, stet_stet, Hyperbolic) | Bulb Game (FXCUP4_bulb) | C++17 | 2 ms | 376 KB |
#include "bulb.h" int FindWinner(int T, std::vector<int> L, std::vector<int> R){ int N = L.size(); int now = 0; std::vector<int> v; while(R[now]>=0){ v.push_back(L[now]); now = R[now]; } if(R[now] == -2) return 0; for(auto &i : v){ while(R[i] >= 0) i = R[i]; if(i == -2) return 0; } return 1; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 348 KB | Output is correct |
2 | Incorrect | 2 ms | 376 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |