From 291d0b974f5f73ea6d8fd95b3ca265ae80aa8c24 Mon Sep 17 00:00:00 2001 From: dranjohn Date: Tue, 13 Jun 2023 01:21:17 +0200 Subject: Update template --- template/template.cpp | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'template/template.cpp') 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 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 -- cgit v1.2.3