| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1307638 | 3lektra | Stove (JOI18_stove) | C++20 | 0 ms | 0 KiB |
//#include "grader.h"
//#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
// PLEASE I'M TRYING TO QUIT MURDLE AND THIS AINT MAKING IT EASIER
// 20 = 2·10 --> Try two times to guess
/*
M -> 62.5
L -> 25
W -> 12.5
*/
void Solve(){
int r;
int a = 1, b = 1, c = 1;
while(r != 0){
r = Theory(a, b, c);
if(r == 0) return;
if(r == 3) c++;
else if(r == 2) b++;
else a++;
}
}
