結果

問題 No.1010 折って重ねて
ユーザー tter4tter4
提出日時 2020-03-21 06:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 53,660 KB
最終ジャッジ日時 2024-12-17 17:46:23
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,660 KB
testcase_01 AC 37 ms
51,944 KB
testcase_02 AC 36 ms
52,268 KB
testcase_03 AC 37 ms
52,452 KB
testcase_04 AC 37 ms
52,104 KB
testcase_05 AC 37 ms
53,196 KB
testcase_06 AC 36 ms
53,220 KB
testcase_07 AC 38 ms
51,940 KB
testcase_08 AC 35 ms
52,440 KB
testcase_09 AC 37 ms
52,688 KB
testcase_10 AC 37 ms
52,240 KB
testcase_11 AC 37 ms
52,492 KB
testcase_12 AC 37 ms
52,004 KB
testcase_13 AC 37 ms
52,216 KB
testcase_14 AC 37 ms
53,120 KB
testcase_15 AC 36 ms
52,740 KB
testcase_16 AC 37 ms
53,132 KB
testcase_17 AC 37 ms
52,892 KB
testcase_18 AC 37 ms
52,484 KB
testcase_19 AC 37 ms
52,280 KB
testcase_20 AC 37 ms
52,196 KB
testcase_21 AC 36 ms
52,220 KB
testcase_22 AC 37 ms
52,212 KB
testcase_23 AC 36 ms
52,624 KB
testcase_24 AC 37 ms
52,420 KB
testcase_25 AC 38 ms
53,372 KB
testcase_26 AC 38 ms
52,472 KB
testcase_27 AC 39 ms
51,936 KB
testcase_28 AC 37 ms
51,904 KB
testcase_29 AC 37 ms
52,976 KB
testcase_30 AC 36 ms
52,700 KB
testcase_31 AC 36 ms
52,248 KB
testcase_32 AC 37 ms
52,404 KB
testcase_33 AC 37 ms
52,068 KB
testcase_34 AC 37 ms
52,180 KB
testcase_35 AC 38 ms
53,660 KB
testcase_36 AC 37 ms
53,048 KB
testcase_37 AC 37 ms
53,348 KB
testcase_38 AC 36 ms
52,280 KB
testcase_39 AC 38 ms
52,944 KB
testcase_40 AC 38 ms
52,376 KB
testcase_41 AC 36 ms
52,480 KB
testcase_42 AC 38 ms
52,956 KB
testcase_43 AC 37 ms
53,564 KB
testcase_44 AC 37 ms
52,740 KB
testcase_45 AC 37 ms
52,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, h = map(int, input().split())

ans = 0
while 1000*x > h or 1000*y > h:
    if 1000*x > h and 1000*y > h:
        if x < y:
            x /= 2
        else:
            y /= 2
    elif 1000*x > h:
        x /= 2
    elif 1000*y > h:
        y /= 2
    h *= 2
    ans += 1

print(ans)
0