| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 3057 | testtest | 올림픽 (KOI13_olympic) | C++98 | 0 ms | 1100 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <algorithm>
struct S {
int a, b, c;
bool operator< (const S &t) const {
if(a != t.a) return a > t.a;
if(b != t.b) return b > t.b;
return c > t.c;
}
} D[1005], W;
int N, K;
int main() {
int i, j;
scanf("%d%d", &N, &K);
for(i = 1; i <= N; i++) {
scanf("%d", &j);
scanf("%d%d%d", &D[j].a, &D[j].b, &D[j].c);
}
W = D[K];
std::sort(D+1, D+N+1);
for(i = 1; i <= N; i++) {
if(D[i].a == W.a && D[i].b == W.b && D[i].c == W.c) {
printf("%d\n", i);
return 0;
}
}
return 0;
}| # | 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... | ||||
