結果

問題 No.2736 About half
ユーザー YU HiroseYU Hirose
提出日時 2024-05-06 20:15:12
言語 Julia
(1.10.2)
結果
TLE  
実行時間 -
コード長 166 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 383,340 KB
最終ジャッジ日時 2024-05-06 20:15:24
合計ジャッジ時間 7,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 302 ms
246,484 KB
testcase_02 AC 289 ms
249,324 KB
testcase_03 AC 290 ms
245,972 KB
testcase_04 AC 319 ms
246,848 KB
testcase_05 AC 318 ms
246,928 KB
testcase_06 AC 289 ms
247,236 KB
testcase_07 AC 290 ms
246,248 KB
testcase_08 AC 316 ms
247,136 KB
testcase_09 AC 292 ms
244,784 KB
testcase_10 AC 291 ms
248,724 KB
testcase_11 AC 295 ms
246,068 KB
testcase_12 AC 324 ms
248,936 KB
testcase_13 AC 297 ms
248,968 KB
testcase_14 AC 296 ms
248,444 KB
testcase_15 AC 290 ms
245,696 KB
testcase_16 AC 317 ms
246,484 KB
testcase_17 AC 293 ms
383,340 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