| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|
| 434519 | | ioi | 게임 (IOI14_game) | C++14 | | 1 ms | 280 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 ;
for(int i = 0 ; i < n ; i ++){
for(int j = i + 1 ; j < n ; j ++){
hasEdge(i , j);
}
}
}
int hasEdge(int u, int v) {
if(N - 1 == v)return 0 ;
return 1;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |