이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
 
#include "grader.h"
#include "lang.h"
 
using namespace std;
 
map<int, bool> ant[60];
 
void excerpt(int *E)
{
	int opt = 0;
	int mx_ig = 0;
 
	for (int i = 0; i <= 55; i++)
	{
		set<int> dist;
 
		for (int j = 1; j <= 100; j++)
			if (E[j-1] >= 'A' && ant[i][E[j-1]]) 
				dist.insert(E[j-1]);
		
		if ((int)dist.size() > mx_ig)
			opt = i, mx_ig = (int)dist.size();
	}
  
    int x = language(opt);
 
	for (int i = 1; i <= 100; i++)
		ant[x][E[i-1]] = 1;
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |