fork download
  1. /* ___
  2.   _______________| |_
  3.   /\ \
  4.  / \ \
  5. /____\__________________\
  6. | | |
  7. | | Date : [DATE] |
  8. | | Author : pppssslc|
  9. |____|__________________|
  10. */
  11. #include<bits/stdc++.h>
  12.  
  13. using namespace std;
  14.  
  15. template<class X, class Y> void mini(X &x, const Y &y){
  16. x = min(x, y);
  17. }
  18.  
  19. template<class X, class Y> void maxi(X &x, const Y &y){
  20. x = max(x, y);
  21. }
  22.  
  23. typedef string str;
  24. typedef long long ll;
  25. typedef unsigned long long ull;
  26. typedef double db;
  27. typedef long double ldb;
  28. typedef pair<int, int> pii;
  29. typedef pair<ll, ll> pll;
  30. typedef vector<int> vi;
  31. typedef vector<ll> vl;
  32. typedef vector<vector<int>> vii;
  33. typedef vector<vector<ll>> vll;
  34. typedef map<int, int> mpii;
  35. typedef map<ll, ll> mpll;
  36. typedef set<int> si;
  37. typedef set<ll> sl;
  38. typedef complex<double> cd;
  39. #define prio_que priority_queue
  40.  
  41. #define se second
  42. #define fi first
  43. #define For(i, l, r, x) for(int i = l; i <= r; i += x)
  44. #define Ford(i, l, r, x) for(int i = l; i >= r; i -= x)
  45. #define Fore(x, a) for(auto x: a)
  46. #define pb push_back
  47. #define ins insert
  48. #define all(a) a.begin(), a.end()
  49.  
  50. #define codecuapppssslc main()
  51.  
  52. const ll inf = 1e18 + 1;
  53. const int mod = 10;
  54. const int maxn = 1e5 + 1;
  55. const db PI = acos(-1);
  56.  
  57. int codecuapppssslc{
  58. ios_base::sync_with_stdio(false);
  59. cin.tie(nullptr); cout.tie(nullptr);
  60.  
  61. return (0 ^ 0);
  62. }
  63.  
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
Standard output is empty