結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
247,080 KB
testcase_01 AC 289 ms
249,208 KB
testcase_02 AC 285 ms
246,420 KB
testcase_03 AC 313 ms
248,432 KB
testcase_04 AC 283 ms
246,368 KB
testcase_05 AC 287 ms
248,192 KB
testcase_06 AC 318 ms
247,976 KB
testcase_07 AC 318 ms
246,100 KB
testcase_08 AC 302 ms
246,788 KB
testcase_09 AC 287 ms
248,680 KB
testcase_10 AC 322 ms
247,272 KB
testcase_11 AC 336 ms
249,080 KB
testcase_12 AC 316 ms
246,228 KB
testcase_13 AC 320 ms
246,228 KB
testcase_14 AC 366 ms
247,268 KB
testcase_15 AC 324 ms
247,380 KB
testcase_16 AC 322 ms
246,080 KB
testcase_17 AC 317 ms
246,228 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