結果

問題 No.1527 Input Constant is Good
ユーザー vjudge1
提出日時 2025-07-16 16:34:59
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,295 bytes
コンパイル時間 7,550 ms
コンパイル使用メモリ 354,136 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-07-16 16:35:08
合計ジャッジ時間 6,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
// #include <atcoder/all>
// using namespace atcoder;
using namespace std;

using ll = long long;
using pll = pair<ll, ll>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vpll = vector<pll>;
using vvpll = vector<vpll>;
#define rep(i, l, r) for (ll i = l; i < ll(r); i++)
#define rrep(i, l, r) for (ll i = ll(r-1); i >= l; i--)

#pragma region // doubling
template <typename T>
T fpow(T base, T id, ll exp, std::function<T(T, T)> bop);
template <typename T>
T fpow(T base, ll exp);

template <typename T>
T fpow(T base, ll exp) {
    T ans = 1;
    while (exp > 0) {
        if (exp & 1ll) {
            ans = ans * base;
        }
        base = base * base;
        exp >>= 1;
    }
    return ans;
}

template <typename T>
T fpow(T base, T id, ll exp, std::function<T(T, T)> bop) {
    T ans = id;
    while (exp > 0) {
        if (exp & 1ll) {
            ans = bop(ans, base);
        }
        base = bop(base, base);
        exp >>= 1;
    }
    return ans;
}
#pragma endregion


#pragma region
#pragma endregion



#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;


int main() {
    ll a, b;
    cin >> a >> b;
    cout << (a <= b ? "Yes" : "No") << endl;

}
0