| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1345582 | FaresSTH | 3개의 봉우리 (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;
}
