Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //---------------------------------------------
- // In the Name of Allah, the Most Gracious, the Most Merciful
- // Author : Algorider
- //---------------------------------------------
- // /User/Ahnaf
- // /User/Ahnaf/templates_v1
- #pragma GCC optimize("Ofast")
- #pragma GCC diagnostic ignored "-Wunused-variable"
- #include <bits/stdc++.h>
- using namespace std;
- typedef long long ll;
- // #define i_want_bug_free_code // debug
- #ifdef i_want_bug_free_code
- #include "algorider/debug.h"
- #else
- #define debug(...) ((void)0)
- #define deb(x) ((void)0)
- #endif
- #define sz(x) (int)x.size()
- #define all(x) (x).begin(), (x).end()
- #define rall(x) (x).rbegin(), (x).rend()
- #define endl '\n'
- #define SUM(v) accumulate(all(v), 0LL)
- void Solve(void) {
- int n;
- cin >> n;
- }
- int main() {
- cin.tie(0)->sync_with_stdio(0);
- int tc; cin >> tc;
- while(tc--) Solve();
- return 0;
- }
Add Comment
Please, Sign In to add comment