| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1345582 | 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(n);
for(int i=0;i<n;i++)res[i]=i%2+1;
return res;
}
