結果

問題 No.1010 折って重ねて
ユーザー prd_xxxprd_xxx
提出日時 2020-03-20 21:40:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 283 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 346,112 KB
最終ジャッジ日時 2024-12-15 04:57:12
合計ジャッジ時間 56,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,572 KB
testcase_01 AC 30 ms
262,656 KB
testcase_02 AC 31 ms
15,872 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 35 ms
188,160 KB
testcase_06 AC 33 ms
16,000 KB
testcase_07 AC 40 ms
235,904 KB
testcase_08 AC 32 ms
15,872 KB
testcase_09 AC 33 ms
120,064 KB
testcase_10 AC 45 ms
16,384 KB
testcase_11 AC 58 ms
111,232 KB
testcase_12 AC 32 ms
15,872 KB
testcase_13 AC 38 ms
240,512 KB
testcase_14 AC 45 ms
16,384 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 686 ms
238,976 KB
testcase_20 TLE -
testcase_21 AC 700 ms
240,384 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,601 ms
58,496 KB
testcase_28 AC 1,945 ms
71,552 KB
testcase_29 TLE -
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 32 ms
10,624 KB
testcase_32 AC 32 ms
10,624 KB
testcase_33 TLE -
testcase_34 AC 248 ms
16,000 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 30 ms
10,624 KB
testcase_37 AC 56 ms
11,392 KB
testcase_38 AC 703 ms
29,184 KB
testcase_39 AC 35 ms
10,880 KB
testcase_40 AC 700 ms
28,928 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 278 ms
18,944 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 195 ms
247,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y,H = map(int,input().split())
X *= 1000
Y *= 1000
from collections import deque

q = deque([(0,X,Y)])
ans = 0
while q:
    k,x,y = q.popleft()
    ans = max(ans, k)
    h = 2**k * H
    if x > h:
        q.append((k+1,x/2,y))
    if y > h:
        q.append((k+1,x,y/2))
print(ans)
0