| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1345600 | FaresSTH | Triple Peaks (IOI25_triples) | C++20 | 0 ms | 0 KiB |
#include"bits/stdc++.h"
using namespace std;
using ll=long long;
#define S second
#define F first
ll count_triples(vector<int>h);
vector<int>construct_range(int n,int k){
vector<int>res;
while(res.size()+5<=n){
res.push_back(2);
res.push_back(1);
res.push_back(3);
res.push_back(1);
res.push_back(2);
}
return res;
}
