Skip to content

Commit db78fb5

Browse files
committed
Auto-sync: 2026-02-25 13:15:23
1 parent d9d9e2f commit db78fb5

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

2000D.cpp

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
DIVYANSH RAWAT
3+
MASTER TEMPLATE
4+
*/
5+
#include <bits/stdc++.h>
6+
using namespace std;
7+
8+
using ll = long long;
9+
10+
#define nl '\n'
11+
12+
#define all(x) (x).begin(), (x).end()
13+
#define rall(x) (x).rbegin(), (x).rend()
14+
void solve() {
15+
return;
16+
}
17+
18+
void MASTER(){
19+
20+
21+
22+
23+
24+
25+
26+
}
27+
28+
int main(){
29+
ios::sync_with_stdio(false);
30+
cin.tie(nullptr);
31+
32+
int t;
33+
cin >> t;
34+
while (t--) {
35+
MASTER();
36+
solve();
37+
}
38+
39+
return 0;
40+
}

0 commit comments

Comments
 (0)