| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1306933 | michael12 | 선물 (IOI25_souvenirs) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
#include "souvenirs"
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
#define int long long
using namespace std;
void buy_souvenirs(int N, int P0){
int P = P0;
if(N == 2){
long long u = 1;
for(int i = 1; i <= 16; i++){
u *= 2;
auto tt = transaction(u);
vector<int> L = tt.ff;
if(L.size() == 1){
break;
}
}
}
}
