| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1255272 | robijoy | Finding Routers (IOI20_routers) | C++17 | 0 ms | 320 KiB |
#include "routers.h"
using namespace std;
vector<int> find_routers(int l, int n, int q) {
vector<int> ans;
if (l < 0 || n < 0 || q < 0) {
return ans;
}
int x = use_detector(l);
if (x < 0) {
return ans;
}
int y = l - x;
if (y < 0) {
return ans;
}
ans.push_back(0);
ans.push_back(y);
return ans;
}| # | 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... | ||||
