# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1257949 | Canuc80k | Triple Peaks (IOI25_triples) | C++20 | 0 ms | 0 KiB |
#include "bits/stdc++.h"
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
std::vector<int> construct_range(int M, int K) {
vector<ll> res; res.push_back(1);
for (int i = 1; i < M; i ++) res.push_back(i);
return res;
}