답안 #693095

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
693095 2023-02-02T11:26:45 Z auslander CONSUL (info1cup19_consul) C++17
19 / 100
749 ms 1816 KB
#include "grader.h"
#include <map>
using namespace std;

map<int, int>mp;

void solve(int n)
{
	int i;
	for (i = 1; i <= n; i++)
	{
		int k = kth(i);
		mp[k]++;
		if (mp[k] > n / 3)
		{
			say_answer(k);
			return;
		}
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 16 ms 284 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Partially correct 83 ms 328 KB Output is partially correct
2 Partially correct 54 ms 288 KB Output is partially correct
# 결과 실행 시간 메모리 Grader output
1 Partially correct 749 ms 1816 KB Output is partially correct
2 Halted 0 ms 0 KB -