結果

問題 No.2736 About half
ユーザー ynishi2015ynishi2015
提出日時 2024-05-07 13:47:52
言語 PHP
(843.2)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 2,582 ms
コンパイル使用メモリ 31,784 KB
実行使用メモリ 31,608 KB
最終ジャッジ日時 2024-11-30 06:59:02
合計ジャッジ時間 3,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,320 KB
testcase_01 AC 41 ms
31,332 KB
testcase_02 AC 41 ms
31,440 KB
testcase_03 AC 41 ms
31,484 KB
testcase_04 AC 41 ms
31,280 KB
testcase_05 AC 41 ms
31,412 KB
testcase_06 AC 41 ms
31,304 KB
testcase_07 AC 41 ms
31,180 KB
testcase_08 AC 41 ms
31,544 KB
testcase_09 AC 42 ms
31,124 KB
testcase_10 AC 41 ms
31,572 KB
testcase_11 AC 42 ms
31,084 KB
testcase_12 AC 42 ms
31,608 KB
testcase_13 AC 41 ms
31,536 KB
testcase_14 AC 41 ms
31,440 KB
testcase_15 AC 42 ms
31,240 KB
testcase_16 AC 42 ms
31,408 KB
testcase_17 AC 42 ms
30,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$a, $b] = explode(" ", trim(fgets(STDIN)));
if($a>$b*2||$b>$a*2){
    echo "No";
}else{
    echo "Yes";
}
0