結果
問題 | No.863 計算量 |
ユーザー |
![]() |
提出日時 | 2019-08-16 21:29:46 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 6,826 bytes |
コンパイル時間 | 2,304 ms |
コンパイル使用メモリ | 196,116 KB |
最終ジャッジ日時 | 2025-01-07 12:11:16 |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
コンパイルメッセージ
main.cpp:282: warning: "int" redefined 282 | #define int double | main.cpp:26: note: this is the location of the previous definition 26 | #define int lint |
ソースコード
/*** code generated by JHelper* More info: https://github.com/AlexeyDmitriev/JHelper* @author edamat*/#include <bits/stdc++.h>using namespace std;#define _overload3(_1, _2, _3, name, ...) name#define _rep(i, n) repi(i, 0, n)#define repi(i, a, b) for(int i = int(a), i##_len = (b); i < i##_len; ++i)#define rep(...) _overload3(__VA_ARGS__, repi, _rep, )(__VA_ARGS__)#define _repr(i, n) repri(i, n, 0)/* loop in [n,m] step -1 */#define repri(i, a, b) for(int i = int(a), i##_len = (b); i >= i##_len; --i)/* loop in [n,0] step -1 or [n,m] step -1 */#define repr(...) _overload3(__VA_ARGS__, repri, _repr, )(__VA_ARGS__)#define all(x) (x).begin(), (x).end()#define debug(x) cerr << #x << ": " << (x) << '\n'#define pb push_back#define append emplace_back#define eb emplace_back#define endl '\n'typedef long long lint;#define int lintconst int INF = numeric_limits<int>::max();//int MOD = (int) 1e9 + 7;//const double EPS = 1e-9;const lint LINF = (lint) (1LL << 62) - 1;typedef vector<int> vint;typedef pair<int, int> pint;struct IoSetup {IoSetup() {cin.tie(nullptr);ios::sync_with_stdio(false);// cout << fixed << setprecision(20);// cerr << fixed << setprecision(20);}} iosetup;using std::to_string;auto to_string(std::string s) -> std::string {return '"' + s + '"';}auto to_string(char c) -> std::string {return "'" + std::string{c} + "'";}auto to_string(const char *s) -> std::string {return to_string((std::string) s);}auto to_string(bool b) -> std::string {return (b?"true":"false");}template<typename T, typename U>auto to_string(std::pair<T, U> p) -> std::string {return "(" + to_string(p.first) + ", " + to_string(p.second) + ")";}template<size_t N>auto to_string(std::bitset<N> bs) -> std::string {std::string res{};for(size_t i = 0; i < N; i++)res.insert(res.begin(), bs.test(i)?'1':'0');return res;}template<typename T>auto to_string(T v) -> std::string {bool flg = false;std::string res = "[";for(auto const &x : v){if(flg) res += ", ";else flg = true;res += to_string(x);}res += "]";return res;}#define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end());#define SZ(x) ((int)(x).size())/* range macro. usage: for(int i:range(n)) */class range {private:struct I {int x;int operator*() { return x; }bool operator!=(I &lhs) { return x < lhs.x; }void operator++() { ++x; }};I i, n;public:range(int n) : i({0}), n({n}) {}range(int i, int n) : i({i}), n({n}) {}I &begin() { return i; }I &end() { return n; }};/* keep a max,min */template<class T>bool chmax(T &a, const T &b) {if(a < b){a = b;return 1;}return 0;}template<class T>bool chmin(T &a, const T &b) {if(a > b){a = b;return 1;}return 0;}/* input,output operator for pair and vector */template<typename T1, typename T2>ostream &operator<<(ostream &os, const pair<T1, T2> &p) {os << p.first << " " << p.second;return os;}template<typename T1, typename T2>istream &operator>>(istream &is, pair<T1, T2> &p) {is >> p.first >> p.second;return is;}template<typename T>ostream &operator<<(ostream &os, const vector<T> &v) {for(int i = 0; i < (int) v.size(); i++){os << v[i] << (i + 1 != v.size()?" ":"");}return os;}template<typename T>ostream &operator<<(ostream &os, const vector<vector<T>> &v) {for(int i = 0; i < (int) v.size(); i++){os << v[i] << (i + 1 != v.size()?"\n":"");}return os;}template<typename T>istream &operator>>(istream &is, vector<T> &v) {for(T &in : v) is >> in;return is;}template<typename T, typename U>ostream &operator<<(ostream &os, const map<T, U> &mp) {os << "{";for(auto x = mp.begin(); x != mp.end(); ++x){os << x->first << ":" << x->second<< (x != prev(mp.end())?", ":"");}os << "}";return os;}/* initialize vector. usage: auto v = male_v<int>(N,0); */template<typename T>vector<T> make_v(size_t a) {return vector<T>(a);}template<typename T, typename... Ts>auto make_v(size_t a, Ts... ts) {return vector<decltype(make_v<T>(ts...))>(a, make_v<T>(ts...));}/* fill vector. usage: fill_v(v,0); */template<typename T, typename V>typename enable_if<is_class<T>::value == 0>::type fill_v(T &t, const V &v) {t = v;}template<typename T, typename V>typename enable_if<is_class<T>::value != 0>::type fill_v(T &t, const V &v) {for(auto &e : t) fill_v(e, v);}/* sum */template<typename T>lint sum(vector<T> &v) {lint ret = 0;for(auto x : v){ret += x;}return ret;}double sum(vector<double> &v) {double ret = 0;for(auto x : v){ret += x;}return ret;}template<typename T>auto sum(const T &a) {return a;}template<typename T, typename... A>auto sum(const T &first, const A &... rest) {return sum(first) + sum(rest...);}/* mod */lint intpow(lint a, lint n, lint mod) {lint res = 1;while(n > 0){if(n & 1) res = res * a % mod;a = a * a % mod;n >>= 1;}return res;}template<typename T>T intpow(T a, lint n) {T res = 1;while(n > 0){if(n & 1) res = res * a;a = a * a;n >>= 1;}return res;}long long modinv(long long a, long long m) {long long b = m, u = 1, v = 0;while(b){long long t = a / b;a -= t * b;swap(a, b);u -= t * v;swap(u, v);}u %= m;if(u < 0) u += m;return u;}struct RandomNumberGenerator {mt19937 mt;RandomNumberGenerator() : mt(chrono::steady_clock::now().time_since_epoch().count()) {}int operator()(int a, int b) { // [a, b)uniform_int_distribution<int> dist(a, b - 1);return dist(mt);}int operator()(int b) { // [0, b)return (*this)(0, b);}};#define int doubleclass A {public:static constexpr int kStressIterations = 0;static void generateTest(int cnt, std::ostream& test) {RandomNumberGenerator rng;}void solve(std::istream& cin, std::ostream& cout) {int A,B;cin >> A >> B;int P = A/5;int Q = A/(5*5);int PB = P*200;int QB = Q*200*200;// cout << PB <<" " << QB << endl;if(B/PB>10){cout << 2 << endl;}else{cout << 1 << endl;}}};signed main() {A solver;std::istream& in(std::cin);std::ostream& out(std::cout);solver.solve(in, out);return 0;}