# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
795236 | vjudge1 | Team Contest (JOI22_team) | C++17 | 195 ms | 13136 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
struct person {
int x, y, z;
};
const int N = 150000;
int w[300 + 10][300 + 10];
void add(int A, int B) {
w[A][B] = max(w[A][B], A + B);
}
void build() {
for(int i = 300; i >= 0; i--) {
for(int j = 300; j >= 0; j--) {
w[i][j] = max({w[i][j + 1], w[i + 1][j], w[i][j]});
}
}
}
vector<pair<int, int>> pnts[N + 10];
int main() {
ios::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
int n;
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |