結果

問題 No.1013 〇マス進む
ユーザー titiatitia
提出日時 2020-03-21 06:49:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 147,484 KB
最終ジャッジ日時 2024-12-17 18:14:21
合計ジャッジ時間 11,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,108 KB
testcase_01 AC 38 ms
52,404 KB
testcase_02 AC 39 ms
53,144 KB
testcase_03 AC 51 ms
63,724 KB
testcase_04 AC 43 ms
59,500 KB
testcase_05 AC 53 ms
62,768 KB
testcase_06 AC 48 ms
62,032 KB
testcase_07 AC 50 ms
62,904 KB
testcase_08 AC 53 ms
63,808 KB
testcase_09 AC 53 ms
63,792 KB
testcase_10 AC 51 ms
64,352 KB
testcase_11 AC 48 ms
61,608 KB
testcase_12 AC 53 ms
64,944 KB
testcase_13 AC 64 ms
70,968 KB
testcase_14 AC 130 ms
108,836 KB
testcase_15 AC 168 ms
131,024 KB
testcase_16 AC 163 ms
125,732 KB
testcase_17 AC 124 ms
104,448 KB
testcase_18 AC 135 ms
111,928 KB
testcase_19 AC 109 ms
95,896 KB
testcase_20 AC 200 ms
144,360 KB
testcase_21 AC 120 ms
101,680 KB
testcase_22 AC 136 ms
113,088 KB
testcase_23 AC 92 ms
85,748 KB
testcase_24 AC 198 ms
145,860 KB
testcase_25 AC 198 ms
144,972 KB
testcase_26 AC 82 ms
83,964 KB
testcase_27 AC 113 ms
100,760 KB
testcase_28 AC 91 ms
86,084 KB
testcase_29 AC 192 ms
143,516 KB
testcase_30 AC 108 ms
97,624 KB
testcase_31 AC 150 ms
119,216 KB
testcase_32 AC 123 ms
107,556 KB
testcase_33 AC 136 ms
107,940 KB
testcase_34 AC 180 ms
128,532 KB
testcase_35 AC 188 ms
124,436 KB
testcase_36 AC 71 ms
73,500 KB
testcase_37 AC 70 ms
72,912 KB
testcase_38 AC 202 ms
132,848 KB
testcase_39 AC 107 ms
92,720 KB
testcase_40 AC 217 ms
128,336 KB
testcase_41 AC 92 ms
85,280 KB
testcase_42 AC 142 ms
105,580 KB
testcase_43 AC 114 ms
93,800 KB
testcase_44 AC 147 ms
108,228 KB
testcase_45 AC 129 ms
103,884 KB
testcase_46 AC 98 ms
87,248 KB
testcase_47 AC 131 ms
105,680 KB
testcase_48 AC 143 ms
112,204 KB
testcase_49 AC 200 ms
126,520 KB
testcase_50 AC 161 ms
119,096 KB
testcase_51 AC 154 ms
114,112 KB
testcase_52 AC 83 ms
82,116 KB
testcase_53 AC 94 ms
84,616 KB
testcase_54 AC 181 ms
124,316 KB
testcase_55 AC 108 ms
88,264 KB
testcase_56 AC 212 ms
138,072 KB
testcase_57 AC 180 ms
118,024 KB
testcase_58 AC 259 ms
147,020 KB
testcase_59 AC 232 ms
147,228 KB
testcase_60 AC 247 ms
147,204 KB
testcase_61 AC 198 ms
147,240 KB
testcase_62 AC 188 ms
147,484 KB
testcase_63 AC 37 ms
52,956 KB
testcase_64 AC 39 ms
52,128 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