結果

問題 No.2736 About half
ユーザー player ctf
提出日時 2024-04-20 12:32:33
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 225 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 62,592 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 07:53:00
合計ジャッジ時間 1,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 5 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main() {
    int A, B;
    std::cin >> A >> B;

    if (A <= B / 2 || B <= A / 2) {
        std::cout << "Yes" << std::endl;
    } else {
        std::cout << "No" << std::endl;
    }

    return 0;
}
0