結果
問題 | No.3073 - |
ユーザー | BDJJ4dG |
提出日時 | 2021-04-01 22:41:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,892 bytes |
コンパイル時間 | 4,152 ms |
コンパイル使用メモリ | 262,680 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-06-01 04:16:20 |
合計ジャッジ時間 | 4,525 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif using namespace std; #define rep(i, n) for (int i = 0, i##_len = (n); i < i##_len; ++i) #define reps(i, n) for (int i = 1, i##_len = (n); i <= i##_len; ++i) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define sz(x) ((int)(x).size()) #define pl(s) cout << (s) << "\n"; #define plx(s) {cout << (s) << "\n"; exit(0);} #define yes(s) cout << ((s)?"Yes":"No") << "\n"; #define bit(n) (1LL << ((int)(n))) #define cdiv(x,y) (((x)+(y)-1)/(y)) #define uniq(x) ((x).erase(unique(all((x))), (x).end())) #ifdef __LOCAL #include <dump.hpp> #define dump(...) DUMPOUT << " " << string(#__VA_ARGS__) << ": " << "[" << to_string(__LINE__) << ":" << __FUNCTION__ << "]" << endl << " ", dump_func(__VA_ARGS__) #else #define dump(...) #endif template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<class T> istream &operator>>(istream &is, vector<T> &v) { for (auto &e : v) is >> e; return is; } template<class T, size_t n> istream &operator>>(istream &is, array<T, n> &v) { for (auto &e : v) is >> e; return is; } template<class T> string join(const vector<T>& v, string sep = " ") { stringstream ss; for (auto &e : v) ss << sep << e; return ss.str().substr(1); } template<class T, size_t n> string join(const array<T, n> &v, string sep = " ") { stringstream ss; for (auto &e : v) ss << sep << e; return ss.str().substr(1); } struct StartUp { StartUp() { cin.tie(nullptr); ios::sync_with_stdio(false); dump("READY"); } } START_UP; using ll = long long; using ld = long double; template<class T> using V = vector<T>; constexpr int INF = (1 << 30) - 1; constexpr ll INFL = 1LL << 60; signed main(void) { return 0; }