結果

問題 No.1010 折って重ねて
ユーザー atcoderbeginneratcoderbeginner
提出日時 2020-03-31 00:08:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,928 KB
最終ジャッジ日時 2024-06-23 07:37:34
合計ジャッジ時間 27,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 500 ms
43,684 KB
testcase_01 AC 505 ms
43,552 KB
testcase_02 AC 496 ms
43,688 KB
testcase_03 AC 514 ms
43,548 KB
testcase_04 AC 507 ms
43,684 KB
testcase_05 AC 530 ms
43,684 KB
testcase_06 AC 508 ms
43,596 KB
testcase_07 AC 522 ms
43,552 KB
testcase_08 AC 505 ms
43,684 KB
testcase_09 AC 510 ms
43,804 KB
testcase_10 AC 515 ms
43,812 KB
testcase_11 AC 511 ms
43,684 KB
testcase_12 AC 505 ms
43,560 KB
testcase_13 AC 502 ms
43,428 KB
testcase_14 AC 507 ms
43,804 KB
testcase_15 AC 510 ms
43,564 KB
testcase_16 AC 502 ms
43,560 KB
testcase_17 AC 502 ms
43,556 KB
testcase_18 AC 498 ms
43,684 KB
testcase_19 AC 495 ms
43,556 KB
testcase_20 AC 504 ms
43,560 KB
testcase_21 AC 510 ms
43,552 KB
testcase_22 AC 533 ms
43,680 KB
testcase_23 AC 496 ms
43,676 KB
testcase_24 AC 507 ms
43,688 KB
testcase_25 AC 501 ms
43,804 KB
testcase_26 AC 506 ms
43,556 KB
testcase_27 AC 516 ms
43,548 KB
testcase_28 AC 507 ms
43,812 KB
testcase_29 AC 510 ms
43,556 KB
testcase_30 AC 506 ms
43,688 KB
testcase_31 AC 502 ms
43,548 KB
testcase_32 AC 493 ms
43,860 KB
testcase_33 AC 496 ms
43,564 KB
testcase_34 AC 501 ms
43,560 KB
testcase_35 AC 505 ms
43,688 KB
testcase_36 AC 516 ms
43,552 KB
testcase_37 AC 499 ms
43,928 KB
testcase_38 AC 514 ms
43,676 KB
testcase_39 AC 507 ms
43,796 KB
testcase_40 AC 520 ms
43,424 KB
testcase_41 AC 501 ms
43,692 KB
testcase_42 AC 492 ms
43,812 KB
testcase_43 AC 507 ms
43,688 KB
testcase_44 AC 506 ms
43,556 KB
testcase_45 AC 495 ms
43,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import module
import sys
import math
import numpy as np

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

x *= 1000
y *= 1000

def tt(z,h,times):
    while z > h :
        z = z/2
        h = h*2
        times = times+1
    return times

def solve(x,y,h):
    n = tt(min(x,y),h,0)
    h = h * (2**n)
    print(tt(max(x,y),h,n))

if __name__ == "__main__":
    solve(x,y,h)
0