# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
25005 | bugmenot111 | Hindeks (COCI17_hindeks) | C11 | 103 ms | 8928 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#define MAXN 1000100
int v[MAXN];
int score[MAXN];
int n;
bool check(int h) {
int s = 0;
for(int i = 0; i < n; i++) if(score[i] >= h) s++;
return s >= h;
}
int cmp(const int* a, const int* b) {
bool c1 = check(b - v), c2 = check(b - v + 1);
return c1 ? (c2 ? 1 : 0) : -1;
}
int main(void) {
int j = 15;
scanf("%d", &n);
for(int i = 0; i < n; i++) scanf("%d", &score[i]);
int* ans = bsearch(&j, v, MAXN, sizeof(int), cmp);
printf("%d\n", ans - v);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |