結果

問題 No.1013 〇マス進む
ユーザー titiatitia
提出日時 2020-03-21 06:49:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 147,508 KB
最終ジャッジ日時 2024-05-09 23:34:56
合計ジャッジ時間 12,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 51 ms
61,824 KB
testcase_04 AC 45 ms
59,520 KB
testcase_05 AC 53 ms
62,848 KB
testcase_06 AC 51 ms
61,312 KB
testcase_07 AC 54 ms
62,208 KB
testcase_08 AC 57 ms
62,848 KB
testcase_09 AC 59 ms
63,360 KB
testcase_10 AC 56 ms
62,464 KB
testcase_11 AC 56 ms
61,696 KB
testcase_12 AC 59 ms
63,488 KB
testcase_13 AC 74 ms
70,528 KB
testcase_14 AC 143 ms
109,092 KB
testcase_15 AC 165 ms
130,928 KB
testcase_16 AC 158 ms
125,788 KB
testcase_17 AC 118 ms
104,452 KB
testcase_18 AC 132 ms
111,824 KB
testcase_19 AC 104 ms
95,792 KB
testcase_20 AC 202 ms
144,456 KB
testcase_21 AC 117 ms
101,620 KB
testcase_22 AC 135 ms
113,388 KB
testcase_23 AC 88 ms
85,604 KB
testcase_24 AC 208 ms
145,816 KB
testcase_25 AC 194 ms
145,004 KB
testcase_26 AC 83 ms
84,060 KB
testcase_27 AC 108 ms
100,544 KB
testcase_28 AC 88 ms
85,820 KB
testcase_29 AC 186 ms
143,452 KB
testcase_30 AC 104 ms
97,364 KB
testcase_31 AC 148 ms
119,524 KB
testcase_32 AC 122 ms
107,640 KB
testcase_33 AC 134 ms
107,652 KB
testcase_34 AC 173 ms
128,492 KB
testcase_35 AC 180 ms
124,720 KB
testcase_36 AC 69 ms
73,376 KB
testcase_37 AC 69 ms
73,136 KB
testcase_38 AC 184 ms
132,944 KB
testcase_39 AC 105 ms
92,708 KB
testcase_40 AC 202 ms
128,288 KB
testcase_41 AC 89 ms
84,824 KB
testcase_42 AC 137 ms
105,616 KB
testcase_43 AC 110 ms
94,040 KB
testcase_44 AC 139 ms
107,832 KB
testcase_45 AC 124 ms
103,792 KB
testcase_46 AC 91 ms
87,140 KB
testcase_47 AC 126 ms
105,508 KB
testcase_48 AC 136 ms
112,156 KB
testcase_49 AC 187 ms
126,428 KB
testcase_50 AC 155 ms
118,896 KB
testcase_51 AC 150 ms
114,004 KB
testcase_52 AC 81 ms
82,244 KB
testcase_53 AC 88 ms
84,480 KB
testcase_54 AC 173 ms
124,304 KB
testcase_55 AC 104 ms
88,156 KB
testcase_56 AC 218 ms
137,984 KB
testcase_57 AC 158 ms
117,736 KB
testcase_58 AC 236 ms
147,044 KB
testcase_59 AC 221 ms
147,228 KB
testcase_60 AC 235 ms
147,228 KB
testcase_61 AC 192 ms
147,456 KB
testcase_62 AC 184 ms
147,508 KB
testcase_63 AC 39 ms
52,452 KB
testcase_64 AC 38 ms
52,676 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