fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define ull unsigned long long
  4. #define ll long long
  5. #define pii pair<int, int>
  6. #define pll pair<long long, long long>
  7. #define fi first
  8. #define sc second
  9. #define BIT(x, i) ((x >> i) & 1)
  10. #define eb(x) emplace_back(x)
  11. #define pb(x) push_back(x)
  12. #define pf(x) push_front(x)
  13. #define DKhoi signed main()
  14. #define FOR(i, a, b) for(int i = a; i <= b; i++)
  15. #define FORD(i, a, b) for (int i = a; i >= b; i--)
  16. #define file ""
  17.  
  18. const int N = 1e6+5;
  19. const int LOG = 20;
  20. const int MOD = 1e9+7;
  21.  
  22. /// _____ _ __ _ _ ____ _____
  23. /// | __ \ | |/ / | | | | / __ \ |_ _|
  24. /// | | | | | ' / | |__| | | | | | | |
  25. /// | | | | | < | __ | | | | | | |
  26. /// | |__| | | . \ | | | | | |__| | _| |_
  27. /// |_____/ |_|\_\ |_| |_| \____/ |_____|
  28. /// TIEN GIANG HIGHSCHOOL FOR THE GIFTED (24-27)
  29.  
  30. int n;
  31. int a[N], f[N];
  32.  
  33. DKhoi {
  34. ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
  35. freopen(file".inp", "r", stdin);
  36. freopen(file".out", "w", stdout);
  37.  
  38. return 0;
  39. }
  40.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
Standard output is empty