이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define endl '\n'
#include "grader.h"
using namespace std;
map < int , int > mapche;
int kth(int k);
void say_answer(int k);
int cnt(int k);
void solve(int N)
{
mapche.clear();
bool ok = false;
int total = 0;
for (int i = 1; i <= N && total < N && !ok; ++ i)
{
int num = kth(i);
if(!mapche[num])
{
int times = cnt(num);
mapche[num] = 1;
total += times;
if(times > N/3)
{
say_answer(num);
ok = 1;
}
}
}
if(!ok)say_answer(-1);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |