# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1260186 | ebrambill | Koala Game (APIO17_koala) | C++17 | 0 ms | 0 KiB |
//In the name of GOD
#include <bits/stdc++.h>
#include "koala.h"
using namespace std;
const int maxN=1e3;
int B[maxN], R[maxN];
int minValue(int n, int w){
for (int i=0; i<n; i++) B[i]=!i;
playRound(B, R);
for (int i=0; i<n; i++)
if(R[i]<=B[i]) return i;
}
int maxValue(int n, int w){
}
int greaterValue(int n, int w){
}
int allValues(int n, int w, int p){
}