Submission #1015358

# Submission time Handle Problem Language Result Execution time Memory
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);
	
	
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -