Guest User

Untitled

a guest
Oct 11th, 2025
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.90 KB | None | 0 0
  1. //---------------------------------------------
  2. // In the Name of Allah, the Most Gracious, the Most Merciful
  3. // Author : Algorider
  4. //---------------------------------------------
  5.  
  6. // /User/Ahnaf
  7. // /User/Ahnaf/templates_v1
  8.  
  9.  
  10. #pragma GCC optimize("Ofast")                  
  11. #pragma GCC diagnostic ignored "-Wunused-variable"
  12.  
  13. #include <bits/stdc++.h>
  14. using namespace std;
  15.  
  16. typedef long long ll;
  17.  
  18. // #define i_want_bug_free_code // debug
  19. #ifdef i_want_bug_free_code
  20. #include "algorider/debug.h"
  21. #else
  22. #define debug(...) ((void)0)
  23. #define deb(x) ((void)0)
  24. #endif
  25.  
  26. #define sz(x) (int)x.size()
  27. #define all(x) (x).begin(), (x).end()
  28. #define rall(x) (x).rbegin(), (x).rend()
  29. #define endl '\n'
  30. #define SUM(v) accumulate(all(v), 0LL)
  31.  
  32. void Solve(void) {
  33.   int n;
  34.   cin >> n;
  35. }
  36.  
  37. int main() {
  38.   cin.tie(0)->sync_with_stdio(0);
  39.   int tc; cin >> tc;
  40.   while(tc--) Solve();
  41.   return 0;
  42. }
Add Comment
Please, Sign In to add comment