diff options
| author | dranjohn <dransheld@outlook.de> | 2023-06-13 01:21:17 +0200 |
|---|---|---|
| committer | dranjohn <dransheld@outlook.de> | 2023-06-13 01:21:17 +0200 |
| commit | 291d0b974f5f73ea6d8fd95b3ca265ae80aa8c24 (patch) | |
| tree | 318bd82f77e8d86daec886a54d9cac6eec2716fb /template/template.cpp | |
| parent | 70a2b877a6eadae2528c1301daf9b80016257c8f (diff) | |
Update template
Diffstat (limited to 'template/template.cpp')
| -rw-r--r-- | template/template.cpp | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/template/template.cpp b/template/template.cpp index b5b5a14..b517406 100644 --- a/template/template.cpp +++ b/template/template.cpp @@ -1,16 +1,17 @@ #include <bits/stdc++.h> using namespace std; - -#define fora(i, n) for (int i = 0; i < n; ++i) -#define forb(i, n) for (int i = 1; i <= n; ++i) +#define ll long long +#define nl '\n' +#define tsolve int t; cin >> t; while(t--) solve #define all(x) ::begin(x), ::end(x) #define sz(x) (ll)::size(x) -#define _ << " " << -#define debug(x) #x << " = " << (x) - -using ll = long long; -using ld = long double; - +#define debug(x) cerr << __LINE__ << #x << ": " << (x) << endl + +void solve() {} + int main() { - cin.tie(0)->sync_with_stdio(false); -} + ios_base::sync_with_stdio(false); + cin.tie(0); + cout << setprecision(16); + solve(); +}
\ No newline at end of file |
