結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,700 KB
testcase_01 AC 33 ms
282,368 KB
testcase_02 AC 33 ms
16,128 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 35 ms
330,368 KB
testcase_06 AC 34 ms
17,828 KB
testcase_07 AC 41 ms
320,896 KB
testcase_08 AC 29 ms
17,572 KB
testcase_09 AC 34 ms
279,552 KB
testcase_10 AC 51 ms
19,108 KB
testcase_11 AC 71 ms
324,992 KB
testcase_12 AC 34 ms
17,824 KB
testcase_13 AC 41 ms
308,864 KB
testcase_14 AC 51 ms
18,976 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,093 ms
403,456 KB
testcase_20 TLE -
testcase_21 AC 1,143 ms
381,056 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 29 ms
17,440 KB
testcase_31 AC 32 ms
330,112 KB
testcase_32 AC 32 ms
17,824 KB
testcase_33 TLE -
testcase_34 AC 400 ms
33,792 KB
testcase_35 AC 30 ms
10,880 KB
testcase_36 AC 28 ms
10,752 KB
testcase_37 AC 70 ms
13,824 KB
testcase_38 AC 1,158 ms
83,072 KB
testcase_39 AC 36 ms
11,136 KB
testcase_40 AC 1,180 ms
82,944 KB
testcase_41 AC 29 ms
10,880 KB
testcase_42 AC 449 ms
38,784 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 296 ms
356,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(ans)
0