제출 #315155

#제출 시각아이디문제언어결과실행 시간메모리
315155yjojdkgk5bpMouse (info1cup19_mouse)C++14
6.00 / 100
3084 ms256 KiB
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
void solve(int n)
{
	vector<int> p;
	for(int i=1; i<=n; i++) p.push_back(i);
	do{
		int v=query(p);
		if(v==n) return;
	}while(next_permutation(p.begin(),p.end()));
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…