結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using namespace chrono;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif

int main() {
    int64_t a, b;
    cin >> a >> b;

    cout << ((a < abs(b)) ? "Yes" : "No") << endl;

    return 0;
}
0