This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "grader.h"
#include<bits/stdc++.h>
void Solve(){
int i = 1, j = 1, k = 1;
while(i <= 6 && j <= 10 && k <= 6){
if(Theory(i, j, k) == 0)return;
else if(Theory(i, j, k) == 1)i++;
else if(Theory(i, j, k) == 2)j++;
else if(Theory(i, j, k) == 3)k++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |