competitive programming scripts on Linux
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
793 B

3 years ago
  1. #include "bits/stdc++.h"
  2. #include "ext/pb_ds/assoc_container.hpp"
  3. using namespace std;
  4. using namespace __gnu_pbds;
  5. typedef long long ll;
  6. #define all(v) (v).begin(), (v).end()
  7. #define read(v) for (auto &x : v) cin >> x;
  8. int main() {
  9. ios_base::sync_with_stdio(0); cin.tie(0);
  10. cout << endl;
  11. return 0;
  12. }
  13. /*
  14. ____ _ _ _ _ _ ___
  15. / ___|___ __| | ___ | |__ _ _ | |_ _ _ __ (_) | |/ (_)_ __ ___
  16. | | / _ \ / _` |/ _ \ | '_ \| | | | _ | | | | | '_ \| | | ' /| | '_ ` _
  17. | |__| (_) | (_| | __/ | |_) | |_| | | |_| | |_| | | | | | | . \| | | | | | |
  18. \____\___/ \__,_|\___| |_.__/ \__, | \___/ \__,_|_| |_|_| |_|\_\_|_| |_| |_|
  19. |___/
  20. */