Advertisement
Eternoseeker

cpp-template-2

Nov 10th, 2024
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef vector<int> vi;
  5.  
  6. #define all(a) (a).begin(), (a).end()
  7.  
  8. const long long MOD = 1e9 + 7;
  9.  
  10. void solve_by_shrihari(){
  11.     // Codeforces plagiarism check sucks
  12.  
  13. }
  14.  
  15. int main() {
  16.     ios_base::sync_with_stdio(0);
  17.     cin.tie(0); cout.tie(0);
  18.     int tc;
  19.     cin >> tc;
  20.     while(tc--) solve_by_shrihari();
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement