peltorator

Standart

Dec 7th, 2016 (edited)
446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. #ifdef ONPC
  2.     #define _GLIBCXX_DEBUG
  3. #endif
  4. #include <bits/stdc++.h>
  5. #define sz(a) ((int)((a).size()))
  6. #define char unsigned char
  7.  
  8. using namespace std;
  9. // mt19937 rnd(239);
  10. mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
  11.  
  12. typedef long long ll;
  13. typedef long double ld;
  14.  
  15. int solve() {
  16.    
  17.     return 0;
  18. }
  19.  
  20. int32_t main() {
  21.     ios::sync_with_stdio(0);
  22.     cin.tie(0);
  23.     int TET = 1e9;
  24.     //cin >> TET;
  25.     for (int i = 1; i <= TET; i++) {
  26.         if (solve()) {
  27.             break;
  28.         }
  29.         #ifdef ONPC
  30.             cout << "__________________________" << endl;
  31.         #endif
  32.     }
  33.     #ifdef ONPC
  34.         cerr << endl << "finished in " << clock() * 1.0 / CLOCKS_PER_SEC << " sec" << endl;
  35.     #endif
  36. }
  37.  
Add Comment
Please, Sign In to add comment