제출 #650683

#제출 시각아이디문제언어결과실행 시간메모리
650683TobFireworks (APIO16_fireworks)C++14
0 / 100
213 ms524288 KiB
#include <bits/stdc++.h>

#define ll long long
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define pb push_back
#define FIO ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)

using namespace std;

ll nxt() {ll num; cin >> num; return num;}

int n, m;

int main () {
	cin >> n >> m;
	
	for (int i = 2; i <= n + m; i++) {
		ll a, b; cin >> a >> b;
	}
	
	int inf = 1e9;
	vector <ll> v(inf);
	
	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...