結果
| 問題 |
No.8074 5000000000000000-SAT
|
| コンテスト | |
| ユーザー |
BDJJ4dG
|
| 提出日時 | 2021-04-01 22:52:19 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 17 ms / 1,000 ms |
| コード長 | 1,970 bytes |
| コンパイル時間 | 6,044 ms |
| コンパイル使用メモリ | 249,656 KB |
| 最終ジャッジ日時 | 2025-01-20 07:13:12 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
#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) {
int n; cin >> n;
rep(i,n) {
string a, b; cin >> a >> b;
}
yes(1);
return 0;
}
BDJJ4dG