답안 #1015358

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1015358 2024-07-06T09:12:25 Z salmon Mouse (info1cup19_mouse) C++14
0 / 100
0 ms 344 KB
#include <bits/stdc++.h>
using namespace std;

mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());

int N;
vector<int> id;

void solve(int N){
		
	for(int i = 1; i <= N; i++){
		id.push_back(i);
	}
	
	shuffle(id.begin(),id.end(),rng);
	
	
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -