fork download
  1. // بسم الله الرحمن الرحيم
  2.  
  3. #include <iostream>
  4. #include <algorithm>
  5. #include <climits>
  6. #include <numeric>
  7. #include <cstring>
  8. #include <iomanip>
  9. #include <unordered_map>
  10. #include <cmath>
  11. #include <vector>
  12. #include <array>
  13. #include <set>
  14. #include <stack>
  15. #include <queue>
  16. #include <map>
  17. #include <string>
  18. using namespace std;
  19.  
  20. template<typename T> ostream& operator<<(ostream& os, vector<T>& v) { for (auto& i : v) os << i << ' '; return os; }
  21. template<typename T> istream& operator>>(istream& is, vector<T>& v) { for (auto& i : v) is >> i; return is; }
  22. #define FreePalestine \
  23.   ios_base::sync_with_stdio(false); \
  24.   cin.tie(NULL); \
  25.   cout.tie(NULL)
  26.  
  27. #define int ll
  28. #define endl '\n'
  29. #define ll long long
  30. #define ull unsigned long long
  31. #define vi vector<int>
  32. #define vvi vector<vi>
  33. #define vll vector<long long>
  34. #define vvll vector<vll>
  35. #define pi pair<int, int>
  36. #define pll pair<ll, ll>
  37. #define vpi vector<pi>
  38. #define vpll vector<pll>
  39. #define float double
  40. #define all(a) a.begin(), a.end()
  41. #define all_r(a) a.rbegin(), a.rend()
  42. #define sum_a(n) n *(n + 1) / 2
  43.  
  44.  
  45. void solve() {
  46.  
  47. }
  48.  
  49.  
  50. signed main() {
  51. FreePalestine;
  52. // #ifndef ONLINE_JUDGE
  53. // freopen("input.txt", "r", stdin);
  54. // freopen("output.txt", "w", stdout);
  55. // #endif
  56. int t; t = 1;
  57. cin >> t;
  58. while (t--) solve();
  59. return 0;
  60. }
  61.  
Success #stdin #stdout 0.01s 5288KB
stdin
1
stdout
Standard output is empty