結果

問題 No.1010 折って重ねて
ユーザー FromBooskaFromBooska
提出日時 2023-03-15 23:22:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 53,832 KB
最終ジャッジ日時 2024-09-18 08:56:54
合計ジャッジ時間 3,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,144 KB
testcase_01 AC 39 ms
52,112 KB
testcase_02 AC 37 ms
53,036 KB
testcase_03 AC 34 ms
51,948 KB
testcase_04 AC 32 ms
52,424 KB
testcase_05 AC 33 ms
51,300 KB
testcase_06 AC 32 ms
52,052 KB
testcase_07 AC 37 ms
51,568 KB
testcase_08 AC 33 ms
52,808 KB
testcase_09 AC 33 ms
52,108 KB
testcase_10 AC 33 ms
51,948 KB
testcase_11 AC 33 ms
51,744 KB
testcase_12 AC 34 ms
52,064 KB
testcase_13 AC 38 ms
52,176 KB
testcase_14 AC 34 ms
52,032 KB
testcase_15 AC 33 ms
53,832 KB
testcase_16 AC 32 ms
52,068 KB
testcase_17 AC 32 ms
52,744 KB
testcase_18 AC 33 ms
52,180 KB
testcase_19 AC 33 ms
52,452 KB
testcase_20 AC 33 ms
51,936 KB
testcase_21 AC 33 ms
52,364 KB
testcase_22 AC 33 ms
52,028 KB
testcase_23 AC 34 ms
52,696 KB
testcase_24 AC 33 ms
52,420 KB
testcase_25 AC 33 ms
52,188 KB
testcase_26 AC 33 ms
52,080 KB
testcase_27 AC 34 ms
52,420 KB
testcase_28 AC 33 ms
51,632 KB
testcase_29 AC 33 ms
52,324 KB
testcase_30 AC 35 ms
52,148 KB
testcase_31 AC 34 ms
52,052 KB
testcase_32 AC 35 ms
52,352 KB
testcase_33 AC 35 ms
51,684 KB
testcase_34 AC 35 ms
52,560 KB
testcase_35 AC 35 ms
51,988 KB
testcase_36 AC 37 ms
52,496 KB
testcase_37 AC 38 ms
52,564 KB
testcase_38 AC 36 ms
52,488 KB
testcase_39 AC 37 ms
53,700 KB
testcase_40 AC 38 ms
52,140 KB
testcase_41 AC 38 ms
52,084 KB
testcase_42 AC 38 ms
51,504 KB
testcase_43 AC 38 ms
52,456 KB
testcase_44 AC 34 ms
52,304 KB
testcase_45 AC 34 ms
53,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# logを使ってもいいけど、倍々なら愚直に計算しても高速に答えに至るのでは

X, Y, H = map(int, input().split())
X *= 1000
Y *= 1000
if Y < X:
    X, Y = Y, X
count = 0
while X > H:
    X /= 2
    H *= 2
    count += 1
while Y > H:
    Y /= 2
    H *= 2
    count += 1
print(count)
0