| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1345722 | thesentro | 트리 (IOI24_tree) | C++20 | 0 ms | 0 KiB |
#include "tree.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
void init(std::vector<int> P, std::vector<int> W) {
p = P;
w = W;
n = (int)p.size();
}
long long query(int L, int R) {
return L;
}
