結果

問題 No.2736 About half
ユーザー kr
提出日時 2024-05-11 16:05:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 283 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 29,952 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-20 08:37:05
合計ジャッジ時間 844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 4 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void)
{
    int A,B;
    scanf("%d\n",&A);
    scanf("%d\n",&B);

    if(A/B>2)
        {
            printf("Yes");
        }
    else if(B/A>2)
        {
            printf("Yes");
        }
    else
        {
            printf("No");
        }
    }
0