# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
173698 | 2020-01-05T06:58:08 Z | sean617 | Languages (IOI10_languages) | C++ | 261 ms | 2936 KB |
#include "grader.h" #include "lang.h" #include <unordered_map> #include <vector> #include <cstring> using namespace std; int l, v[60][100000]; void excerpt(int *E) { int i, j, num, ans = 0, x, mx = 0, cnt; l = 100; for (x =0; x < 56; x++) { cnt = 0; for (i =0; i < l; i++) { cnt += v[x][E[i]]; } if (cnt > mx) { mx = cnt; ans = x; } } ans = language(ans); for (i = 0; i < l; i++) { v[ans][E[i]] = 1; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 261 ms | 2936 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 231 ms | 2936 KB | Output is partially correct - 52.92% |