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 <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
#define f first
#define s second
using namespace std;
#define int long long
void Solve(){
int r;
int a = 1, b = 1, c = 1;
r = Theory(a, b, c);
while(r != 0) {
if(r == 1)
a++;
else if(r == 2)
b++;
else
c++;
}
}
// signed main()
// {
// ios_base::sync_with_stdio(false);
// cin.tie(0);
// cout.tie(0);
// int tt = 1;
// //cin >> tt;
// while(tt--) {
// Solve();
// }
// return 0;
// }
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |