結果

問題 No.2533 A⇒B問題
ユーザー steinnsteinn
提出日時 2023-11-10 21:33:54
言語 Julia
(1.10.2)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 246,336 KB
最終ジャッジ日時 2024-10-01 17:39:30
合計ジャッジ時間 8,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
244,664 KB
testcase_01 AC 292 ms
246,332 KB
testcase_02 AC 294 ms
244,796 KB
testcase_03 AC 294 ms
245,948 KB
testcase_04 AC 295 ms
245,056 KB
testcase_05 AC 295 ms
245,052 KB
testcase_06 AC 293 ms
245,568 KB
testcase_07 AC 296 ms
246,200 KB
testcase_08 AC 292 ms
245,308 KB
testcase_09 AC 294 ms
244,668 KB
testcase_10 AC 294 ms
244,796 KB
testcase_11 AC 296 ms
245,436 KB
testcase_12 AC 295 ms
245,364 KB
testcase_13 AC 296 ms
244,792 KB
testcase_14 AC 296 ms
245,052 KB
testcase_15 AC 297 ms
245,440 KB
testcase_16 AC 296 ms
245,432 KB
testcase_17 AC 295 ms
245,176 KB
testcase_18 AC 293 ms
246,336 KB
testcase_19 AC 294 ms
245,436 KB
testcase_20 AC 295 ms
245,948 KB
testcase_21 AC 292 ms
245,056 KB
testcase_22 AC 293 ms
245,056 KB
testcase_23 AC 295 ms
244,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

parseInts() = parse.(Int64, readline()::String |> split)::Vector{Int64}
parseInt() = parse(Int64, readline()::String)::Int64

function main()
    a, b = parseInts()
    while a > 0 || b > 0
        if !(a % 2 != 1 || b % 2 == 1)
            println("No")
            return 0
        end
        a ÷= 2
        b ÷= 2
    end
    println("Yes")
end

main()
0