結果

問題 No.2022 Antilogarithm
ユーザー nu50218nu50218
提出日時 2022-07-29 21:44:40
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 191,808 KB
最終ジャッジ日時 2025-01-30 15:09:52
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 62
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

// debug
#ifdef LOCAL
#include <debug_print.hpp>
#define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#define debug(...) (static_cast<void>(0))
#endif

// #include "atcoder/all"

using namespace std;

using ll = long long;
using ld = long double;

void solve() {
    ll _A, _B;
    cin >> _A >> _B;

    __uint128_t A = _A, B = _B;
    cout << (A * A < B * B ? "Yes" : "No") << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int t = 1;
    // cin >> t;
    while (t--) {
        solve();
    }

    return 0;
}
0