-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0.cpp
More file actions
41 lines (28 loc) · 780 Bytes
/
0.cpp
File metadata and controls
41 lines (28 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Problem: A. Lame King
// Contest: Codeforces - Nebius Welcome Round (Div. 1 + Div. 2)
// URL: https://codeforces.com/contest/1804/problem/0
// Memory Limit: 512 MB
// Time Limit: 1000 ms
//
// Powered by CP Editor (https://cpeditor.org)
#include <bits/stdc++.h>
#define endl '\n'
#define lli long long int
#define ld long double
#define all(v) v.begin(), v.end()
#define fastIO(); ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define SZ(s) int(s.size())
#define debugg(x) cerr << #x << " = " << x << endl;
#define forn(i, n) for(int i = 0; i < (n); i++)
#define forr(i, a, b) for(int i = (a); i <= (b); i++)
using namespace std;
void main_(){
int a, b; cin>>a>>b;
}
int main () {
//fastIO();
int t = 1;
cin>>t;
while(t--) main_();
return 0;
}