NP-Nidzo

Code template - Competitive Programming 2020

Jun 18th, 2020 (edited)
1,522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 KB | None | 0 0
  1. /**------------------------
  2.     Author : NikolaP
  3.     Compiler : C++
  4. -------------------------*/
  5.  
  6. //{         Setup
  7.  
  8.     #include <bits/stdc++.h>
  9.     using namespace std;
  10.  
  11.     typedef long long int ll;
  12.     typedef long double ld;
  13.     typedef vector<int> vi;
  14.  
  15.     const int inf = INT_MAX;
  16.     const int ninf = INT_MIN;
  17.  
  18. //}
  19.  
  20.  
  21.  
  22. int main()
  23. {
  24.     ios::sync_with_stdio(false);
  25.     cin.tie(0);
  26.     cout.precision(8);
  27.     //cout << fixed;
  28.  
  29.  
  30.     return 0;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment