| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1361485 | jalol250 | Triple Peaks (IOI25_triples) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
vector<int> construct_range(int M, int K){
vector<int> H;
int n = max(3, min(M, 1000)); // oddiy uzunlik
for(int i = 0; i < n; i++){
H.push_back(i+1);
}
return H;
}