File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ #include < bits/stdc++.h>
2+ using namespace std ;
3+ #define gc getchar_unlocked
4+ #define fo (i,n ) for (i=0 ;i<n;i++)
5+ #define Fo (i,k,n ) for (i=k;k<n?i<n:i>n;k<n?i+=1 :i-=1 )
6+ #define ll long long
7+ #define deb (x ) cout << #x << " =" << x << endl
8+ #define deb2 (x, y ) cout << #x << " =" << x << " ," << #y << " =" << y << endl
9+ #define all (x ) x.begin(), x.end()
10+ #define clr (x ) memset(x, 0 , sizeof (x))
11+ #define sortall (x ) sort(all(x))
12+ #define PI 3.1415926535897932384626
13+ typedef pair<int , int > pii;
14+ typedef vector<int > vi;
15+ typedef vector<pii> vpii;
16+ typedef vector<vi> vvi;
17+ // =======================
18+ const int MOD = 1'000'000'007 ;
19+ const int N = 2e6 +13 , M = N;
20+ // =======================
21+ vi g[N];
22+ int a[N];
23+ int n, m, k;
24+ // =======================
25+
26+ void solve () {
27+ cin >> n;
28+ }
29+
30+ int main () {
31+ ios_base::sync_with_stdio (0 ), cin.tie (0 ), cout.tie (0 );
32+
33+ int t = 1 ;
34+ cin >> t;
35+ while (t--) {
36+ solve ();
37+ }
38+
39+ return 0 ;
40+ }
You can’t perform that action at this time.
0 commit comments