| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1361568 | ziyad_alharbi | Cluedo (IOI10_cluedo) | C++20 | 2 ms | 412 KiB |
#include "grader.h"
#include "cluedo.h"
#include<bits/stdc++.h>
using namespace std;
void Solve(){
int m=1,l=1,w=1;
while(true)
{
int cn=Theory(m,l,w);
if(!cn)return;
if(cn==1)m++;
if(cn==2)l++;
if(cn==3)w++;
}
}
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
