이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdlib.h>
#include <stdio.h>
#include <bits/stdc++.h>
#include "grader.h"
#include "lang.h"
#define SZ 100
using namespace std;
int G[66000][60];
int ans[60];
void excerpt(int *E) {
int mx=0;
memset(ans,0,sizeof(ans));
for (int i=0;i<SZ;i++)
for (int j=0;j<60;j++)
if (G[E[i]][j])ans[j]++;
for (int i=0;i<60;i++)
if (ans[i]>ans[mx])mx=i;
int s = language(mx);
for (int i=0;i<SZ;i++)G[E[i]][s]=1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |