結果

問題 No.1013 〇マス進む
ユーザー titiatitia
提出日時 2020-03-21 06:49:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 584 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 284,320 KB
最終ジャッジ日時 2024-12-17 18:14:08
合計ジャッジ時間 91,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,704 KB
testcase_01 AC 31 ms
259,328 KB
testcase_02 AC 32 ms
17,696 KB
testcase_03 AC 40 ms
284,320 KB
testcase_04 AC 34 ms
17,824 KB
testcase_05 AC 43 ms
222,040 KB
testcase_06 AC 40 ms
18,468 KB
testcase_07 AC 49 ms
220,804 KB
testcase_08 AC 43 ms
18,724 KB
testcase_09 AC 55 ms
12,928 KB
testcase_10 AC 49 ms
12,288 KB
testcase_11 AC 41 ms
11,648 KB
testcase_12 AC 53 ms
12,800 KB
testcase_13 AC 135 ms
20,224 KB
testcase_14 AC 1,362 ms
140,360 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,205 ms
123,580 KB
testcase_18 AC 1,551 ms
149,232 KB
testcase_19 AC 919 ms
92,656 KB
testcase_20 TLE -
testcase_21 AC 1,122 ms
114,272 KB
testcase_22 AC 1,692 ms
154,252 KB
testcase_23 AC 490 ms
56,064 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 518 ms
56,064 KB
testcase_27 AC 1,015 ms
108,564 KB
testcase_28 AC 538 ms
57,088 KB
testcase_29 TLE -
testcase_30 AC 1,006 ms
97,536 KB
testcase_31 AC 1,820 ms
177,256 KB
testcase_32 AC 1,285 ms
133,776 KB
testcase_33 AC 1,548 ms
134,416 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 193 ms
23,552 KB
testcase_37 AC 177 ms
22,912 KB
testcase_38 TLE -
testcase_39 AC 953 ms
80,332 KB
testcase_40 TLE -
testcase_41 AC 672 ms
58,368 KB
testcase_42 AC 1,577 ms
130,596 KB
testcase_43 AC 1,046 ms
86,400 KB
testcase_44 AC 1,603 ms
136,896 KB
testcase_45 AC 1,421 ms
121,224 KB
testcase_46 AC 741 ms
63,232 KB
testcase_47 AC 1,514 ms
130,100 KB
testcase_48 AC 1,804 ms
151,840 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 422 ms
39,808 KB
testcase_53 AC 570 ms
53,504 KB
testcase_54 TLE -
testcase_55 AC 843 ms
64,896 KB
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 AC 31 ms
10,880 KB
testcase_64 AC 31 ms
17,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
P=list(map(int,input().split()))
mod=N

P2=P[-1:]+P[:-1]

NEXT=[[0]*N for i in range(31)]
DIS=[[0]*N for i in range(31)]

for i in range(N):
    DIS[0][i]=P2[i]
    NEXT[0][i]=(i+DIS[0][i])%mod

for j in range(1,31):
    for i in range(N):
        DIS[j][i]=DIS[j-1][i]+DIS[j-1][NEXT[j-1][i]]
        NEXT[j][i]=(i+DIS[j][i])%mod

A=[]
for i in range(N):
    NOW=i
    ANS=0
    U=K
    while U:
        b=U.bit_length()-1
        ANS+=DIS[b][NOW]
        NOW=NEXT[b][NOW]
        U-=(1<<b)

    A.append(ANS+i)

for a in A[1:]:
    print(a)
print(A[0]+N)
0