# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1127321 | Kerim | Editor (BOI15_edi) | C++20 | 3089 ms | 12416 KiB |
#include "bits/stdc++.h"
using namespace std;
struct edi{
int tp;
int val;
int lvl;
int par;
bool active;
edi(int _tp, int _val, int _lvl){
par = -1;
tp = _tp;
val = _val;
lvl = _lvl;
active = 0;
}
};
int main(){
// freopen("file.in", "r", stdin);
int n;
scanf("%d", &n);
vector<edi> v;
v.push_back(edi(1, 0, 0));
v[0].active = 1;
for (int i = 1; i <= n; i++){
int x;
scanf("%d", &x);
if (x > 0)
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |