Advertisement
kolychestiy

pattern

Apr 10th, 2022
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.00 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. #define LOCAL
  6. #define MULTITEST
  7.  
  8. #ifdef LOCAL
  9.     #define debug(x) cerr << #x << " = " << x << endl;
  10.     #define ddebug(x, y) cerr << #x << " = " << x << " , " << #y << " = " << y << endl;
  11. #else
  12.     #define debug(x);
  13.     #define ddebug(x, y);
  14. #endif
  15.  
  16. #define int long long
  17.  
  18. #define ld long double
  19. #define ll long long
  20.  
  21. #define pii pair<int, int>
  22. #define fi first
  23. #define se second
  24.  
  25. #define pb push_back
  26. #define vi vector<int>
  27. #define vvi vector<vector<int>>
  28.  
  29. const int INF32 = 2e9 + 5;
  30. const ll INF64 = 4e18 + 5;
  31.  
  32. const ld eps = 1e-10;
  33. const int mod = 1e9 + 7;
  34.  
  35. const int SZ = 1e6 + 5;
  36.  
  37. void solve(){
  38.  
  39.    
  40.  
  41. }
  42.  
  43. signed main(){
  44.  
  45.     srand(time(NULL));
  46.     cout << setprecision(10);
  47.     cout << fixed;
  48.  
  49.     #ifdef LOCAL
  50.         freopen("input.txt", "r", stdin);
  51.     #else
  52.         ios_base::sync_with_stdio(NULL);
  53.         cin.tie(NULL);
  54.         cout.tie(NULL);
  55.     #endif
  56.  
  57.     int t = 1;
  58.     #ifdef MULTITEST
  59.         cin >> t;
  60.     #endif
  61.    
  62.     while (t--){
  63.         solve();
  64.         cout << '\n';
  65.     }
  66.  
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement