結果

問題 No.1010 折って重ねて
ユーザー mlihua09mlihua09
提出日時 2020-09-01 16:54:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,928 KB
最終ジャッジ日時 2024-11-19 07:14:52
合計ジャッジ時間 3,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,564 KB
testcase_01 AC 34 ms
51,992 KB
testcase_02 AC 34 ms
53,928 KB
testcase_03 AC 34 ms
52,000 KB
testcase_04 AC 35 ms
53,032 KB
testcase_05 AC 35 ms
53,348 KB
testcase_06 AC 37 ms
53,688 KB
testcase_07 AC 35 ms
52,660 KB
testcase_08 AC 36 ms
52,704 KB
testcase_09 AC 35 ms
52,752 KB
testcase_10 AC 35 ms
52,516 KB
testcase_11 AC 37 ms
52,700 KB
testcase_12 AC 35 ms
52,336 KB
testcase_13 AC 35 ms
52,748 KB
testcase_14 AC 34 ms
52,620 KB
testcase_15 AC 35 ms
52,548 KB
testcase_16 AC 35 ms
52,272 KB
testcase_17 AC 35 ms
52,556 KB
testcase_18 AC 35 ms
52,056 KB
testcase_19 AC 34 ms
52,712 KB
testcase_20 AC 35 ms
52,496 KB
testcase_21 AC 35 ms
52,184 KB
testcase_22 AC 35 ms
52,508 KB
testcase_23 AC 34 ms
52,084 KB
testcase_24 AC 35 ms
53,092 KB
testcase_25 AC 35 ms
52,760 KB
testcase_26 AC 36 ms
52,240 KB
testcase_27 AC 36 ms
52,556 KB
testcase_28 AC 37 ms
53,456 KB
testcase_29 AC 35 ms
52,556 KB
testcase_30 AC 36 ms
52,912 KB
testcase_31 AC 35 ms
52,556 KB
testcase_32 AC 35 ms
52,912 KB
testcase_33 AC 35 ms
52,964 KB
testcase_34 AC 35 ms
52,332 KB
testcase_35 AC 35 ms
52,240 KB
testcase_36 AC 35 ms
52,316 KB
testcase_37 AC 34 ms
52,376 KB
testcase_38 AC 37 ms
52,372 KB
testcase_39 AC 35 ms
53,288 KB
testcase_40 AC 36 ms
52,388 KB
testcase_41 AC 34 ms
52,968 KB
testcase_42 AC 35 ms
52,592 KB
testcase_43 AC 34 ms
52,316 KB
testcase_44 AC 36 ms
52,880 KB
testcase_45 AC 35 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


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

if x > y:
    x, y = y, x
    
x *= 1000
y *= 1000

ans = 0
while x > h:
    y *= 2
    h *= 4
    ans += 1
    
while y > h:
    h *= 4
    ans += 1
    
print(ans)
0