fork download
  1. #include <bits/stdc++.h>
  2. // #pragma GCC optimize("O3,unroll-loops")
  3. // #pragma GCC target("avx2,bmi,bmi2,lzcnt")
  4. using namespace std;
  5. // mt19937 rng(chrono::steady_clock::now().time_since_epoch().count())
  6. #define edl '\n'
  7. #ifdef LOCAL
  8. #include "../cp-template/Basic/debug.h"
  9. #else
  10. #define dbg1(args...)
  11. #define dbg2(x)
  12. #define stop
  13. #endif
  14. typedef long long LL;
  15. typedef unsigned long long uLL;
  16. // typedef __int128_t LLL;
  17. typedef vector<int> vi;
  18. typedef vector<vector<int>> vvi;
  19. typedef pair<int, int> pii;
  20. typedef pair<LL, int> pli;
  21. typedef pair<LL, LL> pll;
  22. const int INF = 1e9;
  23. const LL MOD = 998244353;
  24. const int N = 1e3 + 5;
  25.  
  26. void solve(int csno)
  27. {
  28.  
  29. }
  30. signed main()
  31. {
  32. ios_base::sync_with_stdio(false);
  33. cin.tie(NULL);
  34. cout.tie(NULL);
  35. int T = 1;
  36. // cin >> T;
  37. for (int csno = 1; csno <= T; csno++)
  38. solve(csno);
  39. }
  40.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty