fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define ll long long
  4. #define endl '\n'
  5. #define all(x) x.begin(), x.end()
  6. #define rall(x) x.rbegin(), x.rend()
  7. #define mem(a, b) memset(a, b, sizeof(a))
  8. #define read(x) \
  9.   for (auto &it : x) \
  10.   cin >> it;
  11. const int MOD = 1e9 + 7;
  12. const int N = 1e5 + 7;
  13. #ifndef ONLINE_JUDGE
  14. #include "template.cpp"
  15. #else
  16. #define debug(...)
  17. #define debugArr(...)
  18. #endif
  19.  
  20. /*
  21. unordered_map<ll, ll> mp1;
  22. mp.reserve(1024);
  23. mp.max_load_factor(0.25);
  24. */
  25.  
  26. int32_t main()
  27. {
  28. ios::sync_with_stdio(false);
  29. cin.tie(NULL);
  30.  
  31. return 0;
  32. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Standard output is empty