Advertisement
a_chn

Untitled

Sep 12th, 2024
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define int long long
  5. #define all(x) (x).begin(),(x).end()
  6. #define pb push_back
  7.  
  8. void setIO(string s) {
  9.     ios_base::sync_with_stdio(0);
  10.     cin.tie(0);
  11.     freopen((s + ".in").c_str(), "r", stdin);
  12.     freopen((s + ".out").c_str(), "w", stdout);
  13. }
  14.  
  15. void solve() {
  16.    
  17. }
  18.  
  19. signed main(){
  20.     ios_base::sync_with_stdio(0);
  21.     cin.tie(0);
  22.     int t; cin >> t;
  23.     while(t--) {
  24.         solve();
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement