結果

問題 No.2736 About half
ユーザー YU HiroseYU Hirose
提出日時 2024-05-06 20:15:30
言語 Julia
(1.10.2)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 245,240 KB
最終ジャッジ日時 2024-11-29 06:14:58
合計ジャッジ時間 6,421 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
244,156 KB
testcase_01 AC 288 ms
244,352 KB
testcase_02 AC 287 ms
244,160 KB
testcase_03 AC 282 ms
244,792 KB
testcase_04 AC 282 ms
244,412 KB
testcase_05 AC 287 ms
244,924 KB
testcase_06 AC 285 ms
244,980 KB
testcase_07 AC 287 ms
243,516 KB
testcase_08 AC 287 ms
245,240 KB
testcase_09 AC 287 ms
244,152 KB
testcase_10 AC 283 ms
244,156 KB
testcase_11 AC 285 ms
244,032 KB
testcase_12 AC 283 ms
244,800 KB
testcase_13 AC 281 ms
244,024 KB
testcase_14 AC 284 ms
243,956 KB
testcase_15 AC 283 ms
244,156 KB
testcase_16 AC 282 ms
245,180 KB
testcase_17 AC 282 ms
244,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function solve()
    a, b = readline() |> split |> x->parse.(Int, x)
    if a > 2b || b > 2a
        println("No")
    else
        println("Yes")
    end
end
solve()
0