Submission #595306

# Submission time Handle Problem Language Result Execution time Memory
595306 2022-07-13T14:48:25 Z SlyGaleeb Cluedo (IOI10_cluedo) C++17
0 / 100
0 ms 208 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define ld long double
#define F first
#define S second

int Theory (int a, int b, int c);

void Solve () {
	int a=1,b=1,c=1;
	while(1) {
		if (Theory(a,b,c)==1)
			a++;
		else if (Theory(a,b,c)==2)
			b++;
		else if (Theory(a,b,c)==3)
			c++;
		else
			return;
	}
}

/*int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);


}*/
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB Incorrect
2 Halted 0 ms 0 KB -