| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1352628 | afterzero | Race (IOI11_race) | C++20 | 0 ms | 344 KiB |
#include<bits/stdc++.h>
using namespace std ;
int best_path(int N, int K, int H[][2], int L[]){
int m = -1;
for(int i = 0 ; i< N ; i++){
int sum = 0 ;
for(int j = i ; j < N- 1 ; j++){
sum+=L[j];
if(sum==K){
m = sum ;
break;
}
}
}
return m ;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
