結果

問題 No.1010 折って重ねて
ユーザー RitzRitz
提出日時 2020-03-20 22:05:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 53,748 KB
最終ジャッジ日時 2024-12-15 05:59:24
合計ジャッジ時間 2,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,284 KB
testcase_01 AC 34 ms
52,520 KB
testcase_02 AC 34 ms
52,676 KB
testcase_03 AC 34 ms
52,200 KB
testcase_04 AC 34 ms
53,668 KB
testcase_05 AC 35 ms
52,944 KB
testcase_06 AC 34 ms
52,264 KB
testcase_07 AC 33 ms
52,680 KB
testcase_08 AC 36 ms
52,128 KB
testcase_09 AC 35 ms
52,424 KB
testcase_10 AC 33 ms
52,004 KB
testcase_11 AC 34 ms
53,384 KB
testcase_12 AC 33 ms
52,308 KB
testcase_13 AC 34 ms
52,556 KB
testcase_14 AC 33 ms
52,124 KB
testcase_15 AC 34 ms
52,680 KB
testcase_16 AC 33 ms
53,744 KB
testcase_17 AC 34 ms
52,264 KB
testcase_18 AC 33 ms
52,424 KB
testcase_19 AC 34 ms
53,404 KB
testcase_20 AC 34 ms
52,052 KB
testcase_21 AC 34 ms
52,348 KB
testcase_22 AC 34 ms
52,968 KB
testcase_23 AC 34 ms
53,748 KB
testcase_24 AC 34 ms
52,484 KB
testcase_25 AC 34 ms
53,584 KB
testcase_26 AC 34 ms
52,636 KB
testcase_27 AC 33 ms
53,412 KB
testcase_28 AC 33 ms
53,020 KB
testcase_29 AC 33 ms
52,884 KB
testcase_30 AC 33 ms
52,416 KB
testcase_31 AC 33 ms
51,756 KB
testcase_32 AC 34 ms
53,560 KB
testcase_33 AC 33 ms
52,208 KB
testcase_34 AC 33 ms
53,368 KB
testcase_35 AC 34 ms
52,072 KB
testcase_36 AC 32 ms
53,404 KB
testcase_37 AC 33 ms
52,500 KB
testcase_38 AC 33 ms
52,124 KB
testcase_39 AC 34 ms
52,320 KB
testcase_40 AC 34 ms
52,460 KB
testcase_41 AC 33 ms
53,560 KB
testcase_42 AC 33 ms
53,480 KB
testcase_43 AC 33 ms
52,332 KB
testcase_44 AC 33 ms
52,464 KB
testcase_45 AC 34 ms
53,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, h = map(int, input().split())
H = h / 1000
count = 0

while True:
    if x < y:
        if x > H:
            x = x / 2
            H = H * 2
            count += 1
        elif y > H:
            y = y / 2
            H = H * 2
            count += 1
        else:
            break
    else:
        if y > H:
            y = y / 2
            H = H * 2
            count += 1
        elif x > H:
            x = x / 2
            H = H * 2
            count += 1
        else:
            break

print(count)
0