Skip to content

Commit c0dadbf

Browse files
committed
Auto-sync: 2026-02-26 23:05:29
1 parent 1ecb0c8 commit c0dadbf

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

1729D.cpp

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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+
ll fx(ll &x){
18+
string s = to_string(x);
19+
ll sum = 0;
20+
21+
for(int i = 0;i<s.size();i++){
22+
sum += s[i]-'0';
23+
}
24+
return sum;
25+
26+
27+
28+
}
29+
void MASTER() {
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
}
40+
int main(){
41+
ios::sync_with_stdio(false);
42+
cin.tie(nullptr);
43+
44+
int t;
45+
cin >> t;
46+
while (t--) {
47+
MASTER();
48+
solve();
49+
}
50+
51+
return 0;
52+
}

0 commit comments

Comments
 (0)