fork download
  1.  
  2.  
  3.  
  4. #include <bits/stdc++.h>
  5. #define FOR(i, a, b) for(int i = (a), _b = (b); i <= _b; ++i)
  6. #define fi first
  7. #define se second
  8. #define el "\n"
  9. #define pb push_back
  10. #define sz(a) (int)a.size()
  11. #define FILL(a, x) memset(a, x, sizeof(a))
  12.  
  13. using namespace std;
  14. typedef long long ll;
  15. typedef pair<int, int> ii;
  16. const int N = (int)1e6+3;
  17.  
  18. int main()
  19. {
  20. ios_base::sync_with_stdio(false);
  21. cin.tie(NULL); cout.tie(NULL);
  22. freopen(".inp", "r", stdin);
  23. freopen(".out", "w", stdout);
  24. return 0;
  25. }
  26.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Standard output is empty