| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 201639 | DavidDamian | Game (IOI14_game) | C++11 | 5 ms | 376 KiB |
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 "game.h"
int n;
void initialize(int N) {
n=N;
}
int blocked[10005];
int hasEdge(int u, int v) {
if(blocked[u]+1==n-1 || blocked[v]+1==n-1){
return 1;
}
else{
blocked[u]++;
blocked[v]++;
return 0;
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
