Submission #315049

# Submission time Handle Problem Language Result Execution time Memory
315049 2020-10-22T01:35:46 Z Seanliu CONSUL (info1cup19_consul) C++14
0 / 100
1 ms 352 KB
#include "grader.h"

int seed = 101;

inline int rnd(){
	return seed = (seed * 3 + 1) % 0xdefaced;
}

void solve(int N){
	for(int i = 0; i < 30; i++){
		int r = rnd() % N + 1;
		int v = kth(r);
		int c = cnt(v);
		if(c > N / 3){
			say_answer(c);
			return;
		}
	}
	say_answer(-1);
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 256 KB Wrong answer
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB Wrong answer
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 352 KB Wrong answer
2 Halted 0 ms 0 KB -