kolychestiy

pattern

Apr 3rd, 2022 (edited)
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.19 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. #define LOCAL
  6. const string task_name = "main";
  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 double long double
  17. // #define int long long
  18.  
  19. #define pii pair<int, int>
  20. #define fi first
  21. #define se second
  22.  
  23. #define vi vector<int>
  24. #define vvi vector<vector<int>>
  25. #define pb push_back
  26.  
  27. #define ll long long
  28. #define ld long double
  29.  
  30. const int INF32 = 2e9 + 5;
  31. const long long INF64 = 4e18 + 5;
  32.  
  33. const double PI = acosl(-1);
  34.  
  35. const int mod = 1e9 + 7;
  36. const int SZ = 1e6 + 5;
  37. const double eps = 1e-12;
  38.  
  39. void solve(){
  40.  
  41. }
  42.  
  43. signed main(){
  44.  
  45.     srand(time(NULL));
  46.    
  47.     cout << setprecision(10);
  48.     cout << fixed;
  49.  
  50.     #ifdef LOCAL
  51.         freopen ("input.txt", "r", stdin);
  52.     #else
  53.         freopen (task_name + ".in", "r", stdin);
  54.         freopen (task_name + ".out", "w", stdout);
  55.  
  56.         ios_base::sync_with_stdio(NULL);
  57.         cin.tie(NULL);
  58.         cout.tie(NULL);
  59.     #endif
  60.  
  61.     int num_test = 1;
  62.     cin >> num_test;
  63.     for (int cnt_test = 1; cnt_test <= num_test; cnt_test++){
  64.         solve();
  65.     }
  66.  
  67. }
Add Comment
Please, Sign In to add comment