fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4.  
  5. typedef long long ll;
  6. typedef pair<int, int> pii;
  7. typedef pair<ll, ll> pll;
  8. typedef pair<string, string> pss;
  9. typedef vector<int> vi;
  10. typedef vector<vi> vvi;
  11. typedef vector<pii> vii;
  12. typedef vector<ll> vl;
  13. typedef vector<vl> vvl;
  14. #define pb push_back
  15.  
  16. const int mod = 1e9 + 7;
  17.  
  18.  
  19. int solve()
  20. {
  21.  
  22. }
  23.  
  24.  
  25. int main()
  26. {
  27. // code is written by anubhavcpp
  28.  
  29. long long testCase;
  30. cin >> testCase;
  31. while(testCase--)
  32. {
  33. cout << solve() << endl;
  34. // if(solve()) cout << "YES" << endl;
  35. // else cout << "NO" << endl;
  36. // solve();
  37. }
  38. }
Success #stdin #stdout 0.01s 5532KB
stdin
Standard input is empty
stdout
Standard output is empty