Submission #1353605

#TimeUsernameProblemLanguageResultExecution timeMemory
1353605ChinguunCluedo (IOI10_cluedo)C++20
50 / 100
31 ms396 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
    int r;
    bool f1 = 0, f2 = 0, f3 = 0;
    for (int m = 1; m <= 6; m++) {
		for (int l = 1; l <= 10; l++) {
			for (int w = 1; w <= 6; w++) {
				r = Theory(m, l, w);
				if (!r) {
					return;
				}
			}
		}
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...