結果

問題 No.2736 About half
ユーザー a
提出日時 2024-04-20 11:52:06
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 27,520 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 07:09:32
合計ジャッジ時間 938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 7 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
    int numA, numB;
    scanf("%d %d",&numA,&numB);
    if(numA > numB*2){
        printf("No");
    }else if(numB > numA*2){
        printf("No");
    }else{
        printf("yes");
    }
}
0