結果

問題 No.1010 折って重ねて
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-30 23:36:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 53,764 KB
最終ジャッジ日時 2024-11-15 15:32:58
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,260 KB
testcase_01 AC 37 ms
52,488 KB
testcase_02 AC 37 ms
52,068 KB
testcase_03 AC 33 ms
53,096 KB
testcase_04 AC 35 ms
53,216 KB
testcase_05 AC 35 ms
52,596 KB
testcase_06 AC 36 ms
53,764 KB
testcase_07 AC 36 ms
52,496 KB
testcase_08 AC 36 ms
53,184 KB
testcase_09 AC 37 ms
52,724 KB
testcase_10 AC 36 ms
52,276 KB
testcase_11 AC 35 ms
52,444 KB
testcase_12 AC 36 ms
52,328 KB
testcase_13 AC 35 ms
53,572 KB
testcase_14 AC 35 ms
52,188 KB
testcase_15 AC 34 ms
53,512 KB
testcase_16 AC 34 ms
51,944 KB
testcase_17 AC 35 ms
52,376 KB
testcase_18 AC 34 ms
52,424 KB
testcase_19 AC 34 ms
52,568 KB
testcase_20 AC 33 ms
52,000 KB
testcase_21 AC 35 ms
53,588 KB
testcase_22 AC 35 ms
52,028 KB
testcase_23 AC 35 ms
52,444 KB
testcase_24 AC 36 ms
52,452 KB
testcase_25 AC 34 ms
51,884 KB
testcase_26 AC 35 ms
53,384 KB
testcase_27 AC 33 ms
52,064 KB
testcase_28 AC 35 ms
52,416 KB
testcase_29 AC 35 ms
52,432 KB
testcase_30 AC 34 ms
52,732 KB
testcase_31 AC 35 ms
53,036 KB
testcase_32 AC 36 ms
53,340 KB
testcase_33 AC 35 ms
52,216 KB
testcase_34 AC 34 ms
52,912 KB
testcase_35 AC 34 ms
52,412 KB
testcase_36 AC 36 ms
52,424 KB
testcase_37 AC 33 ms
52,072 KB
testcase_38 AC 35 ms
52,556 KB
testcase_39 AC 34 ms
53,600 KB
testcase_40 AC 34 ms
52,296 KB
testcase_41 AC 35 ms
51,872 KB
testcase_42 AC 35 ms
52,284 KB
testcase_43 AC 34 ms
52,344 KB
testcase_44 AC 33 ms
52,684 KB
testcase_45 AC 34 ms
52,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,h = map(int,input().split())
x,y = x*1000,y*1000
ans = 0
if x > y:
    x,y = y,x
while x > h:
    y *= 2
    h *= 4
    ans += 1
while y > h:
    h *= 4
    ans += 1

print(ans)
0