| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1345600 | 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;
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;
}
