-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path291607.cpp
More file actions
32 lines (25 loc) · 826 Bytes
/
291607.cpp
File metadata and controls
32 lines (25 loc) · 826 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
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int N = 1e5 + 5;
void Main() {
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
// int t; cin >> t; while(t--) Main();
Main();
return 0;
}
/*
contest name: src
problem letter: 291607
Time: 2025-05-29 18:43 UTC: +3:30
Writer: EnAnsari
Email: Rahmat2022a@gmail.com
website: enansari.github.io
You can't connect the dots looking forward; you can only connect them looking backwards. So you have to trust that
the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma,
whatever. This approach has never let me down, and it has made all the difference in my life. ~Steve Jobs
this code created by rcph (https://github.com/EnAnsari/cph)
*/