Submission #595240

#TimeUsernameProblemLanguageResultExecution timeMemory
595240SlyGaleebCluedo (IOI10_cluedo)C++17
50 / 100
176 ms208 KiB
#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 () {
	for (int i = 1; i <= 6; ++i) {
		for (int j = 1; j <= 10; ++j) {
			for (int k = 1; k <= 6; ++k)
				if (Theory(i,j,k)==0)
					return;
		}
	}
}

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


}*/
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...