結果

問題 No.1013 〇マス進む
ユーザー titiatitia
提出日時 2020-03-21 06:49:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 584 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 285,380 KB
最終ジャッジ日時 2024-05-09 23:34:41
合計ジャッジ時間 17,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,256 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 40 ms
11,648 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 42 ms
11,648 KB
testcase_06 AC 41 ms
11,520 KB
testcase_07 AC 46 ms
12,288 KB
testcase_08 AC 42 ms
11,904 KB
testcase_09 AC 52 ms
12,928 KB
testcase_10 AC 48 ms
12,288 KB
testcase_11 AC 39 ms
11,520 KB
testcase_12 AC 52 ms
12,800 KB
testcase_13 AC 126 ms
20,096 KB
testcase_14 AC 1,444 ms
140,284 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,207 ms
123,580 KB
testcase_18 AC 1,520 ms
149,232 KB
testcase_19 AC 896 ms
92,652 KB
testcase_20 TLE -
testcase_21 AC 1,108 ms
114,264 KB
testcase_22 AC 1,620 ms
154,376 KB
testcase_23 AC 525 ms
56,192 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 520 ms
56,064 KB
testcase_27 AC 1,006 ms
108,692 KB
testcase_28 AC 558 ms
57,216 KB
testcase_29 TLE -
testcase_30 AC 998 ms
97,536 KB
testcase_31 AC 1,845 ms
177,260 KB
testcase_32 AC 1,269 ms
133,904 KB
testcase_33 AC 1,541 ms
134,540 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 191 ms
23,680 KB
testcase_37 AC 173 ms
22,912 KB
testcase_38 TLE -
testcase_39 AC 928 ms
80,328 KB
testcase_40 TLE -
testcase_41 AC 656 ms
58,240 KB
testcase_42 AC 1,566 ms
130,720 KB
testcase_43 AC 989 ms
86,656 KB
testcase_44 AC 1,589 ms
137,024 KB
testcase_45 AC 1,417 ms
121,476 KB
testcase_46 AC 722 ms
63,232 KB
testcase_47 AC 1,428 ms
130,360 KB
testcase_48 AC 1,806 ms
151,956 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 395 ms
39,808 KB
testcase_53 AC 554 ms
53,376 KB
testcase_54 TLE -
testcase_55 AC 797 ms
64,896 KB
testcase_56 TLE -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
権限があれば一括ダウンロードができます

ソースコード

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