# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1041491 | 2024-08-02T04:48:34 Z | 김은성(#11000) | A Light Inconvenience (CEOI23_light) | C++17 | 584 ms | 1048576 KB |
#include "light.h" #include <bits/stdc++.h> using namespace std; typedef long long ll; bool ch; ll cnt; void prepare(){ ch = 0; cnt = 1; } std::pair<long long, std::vector<long long>> join(long long p){ cnt += p; vector<ll> ret; if(ch){ return make_pair(p, vector<long long>({cnt})); } for(int po = 1; po <= cnt; po *= 2) ret.push_back(cnt+1-po); if(ret.empty() || ret.back() != 1) ret.push_back(1); for(int i=0; i<ret.size()/2; i++) swap(ret[i], ret[ret.size()-1-i]); return make_pair(p, ret); } std::pair<long long, std::vector<long long>> leave(long long p){ ch = 1; cnt -= p; return make_pair(p, vector<long long>({cnt})); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 340 KB | Correct |
2 | Runtime error | 563 ms | 1048576 KB | Execution killed with signal 9 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | Correct |
2 | Incorrect | 0 ms | 344 KB | Not correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | Correct |
2 | Incorrect | 0 ms | 344 KB | Not correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | Correct |
2 | Incorrect | 0 ms | 344 KB | Not correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | Correct |
2 | Incorrect | 0 ms | 344 KB | Not correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | Correct |
2 | Incorrect | 0 ms | 344 KB | Not correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Correct |
2 | Runtime error | 584 ms | 1048576 KB | Execution killed with signal 9 |
3 | Halted | 0 ms | 0 KB | - |