fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define LOCAL 0
  5. #define PB push_back
  6. #define LB lower_bound
  7. #define UB upper_bound
  8. #define ALL(c) (c).begin(), (c).end()
  9. #define FOR(i, s, e) for(int i = (s); i < (e); i++)
  10. #define DBG(e) {if(LOCAL) cerr << setw(10) << #e << " = " << setw(5) << e << "\n";}
  11. #define FOR_EACH(e, c) for(typeof((c).begin()) (c)##it = (c).begin();(e = *(c)##it ,(c)##it != (c).end()); (c)##it++)
  12.  
  13. typedef long long int LL;
  14. typedef vector<int> VI;
  15. typedef vector<LL> VL;
  16. typedef pair<int, int> PII;
  17.  
  18. const int MOD = 1E9+9;
  19. const int INF = 1E5+1;
  20.  
  21. int main()
  22. {
  23. ios_base::sync_with_stdio(false);
  24.  
  25. int t;
  26. cin >> t;
  27.  
  28. while(t--){
  29.  
  30. }
  31. }
  32.  
Success #stdin #stdout 0s 3476KB
stdin
Standard input is empty
stdout
Standard output is empty