# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1252886 | nickolasarapidis | Triple Peaks (IOI25_triples) | C++17 | 0 ms | 0 KiB |
#include "triples.h"
#include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
long long count_triples(std::vector<int> H){
int N = H.size();
long long ans = 0;
return ans;
}