結果

問題 No.1013 〇マス進む
ユーザー takakintakakin
提出日時 2020-03-23 00:07:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 144,768 KB
最終ジャッジ日時 2024-12-26 05:43:33
合計ジャッジ時間 12,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 53 ms
60,032 KB
testcase_04 AC 50 ms
58,880 KB
testcase_05 AC 56 ms
60,544 KB
testcase_06 AC 58 ms
60,672 KB
testcase_07 AC 59 ms
60,928 KB
testcase_08 AC 52 ms
60,672 KB
testcase_09 AC 64 ms
62,336 KB
testcase_10 AC 60 ms
61,440 KB
testcase_11 AC 56 ms
60,544 KB
testcase_12 AC 62 ms
62,336 KB
testcase_13 AC 75 ms
69,760 KB
testcase_14 AC 152 ms
107,648 KB
testcase_15 AC 201 ms
128,640 KB
testcase_16 AC 181 ms
123,776 KB
testcase_17 AC 146 ms
103,424 KB
testcase_18 AC 162 ms
110,464 KB
testcase_19 AC 123 ms
94,848 KB
testcase_20 AC 224 ms
141,440 KB
testcase_21 AC 129 ms
100,864 KB
testcase_22 AC 158 ms
111,360 KB
testcase_23 AC 110 ms
82,048 KB
testcase_24 AC 231 ms
143,360 KB
testcase_25 AC 230 ms
141,952 KB
testcase_26 AC 92 ms
82,176 KB
testcase_27 AC 122 ms
99,328 KB
testcase_28 AC 94 ms
82,048 KB
testcase_29 AC 221 ms
140,544 KB
testcase_30 AC 126 ms
96,512 KB
testcase_31 AC 172 ms
117,376 KB
testcase_32 AC 149 ms
106,880 KB
testcase_33 AC 147 ms
106,624 KB
testcase_34 AC 224 ms
126,080 KB
testcase_35 AC 194 ms
122,368 KB
testcase_36 AC 87 ms
70,784 KB
testcase_37 AC 79 ms
70,528 KB
testcase_38 AC 201 ms
130,304 KB
testcase_39 AC 121 ms
91,648 KB
testcase_40 AC 200 ms
125,696 KB
testcase_41 AC 106 ms
83,584 KB
testcase_42 AC 150 ms
104,960 KB
testcase_43 AC 119 ms
93,312 KB
testcase_44 AC 150 ms
106,624 KB
testcase_45 AC 139 ms
102,656 KB
testcase_46 AC 103 ms
84,608 KB
testcase_47 AC 144 ms
104,576 KB
testcase_48 AC 169 ms
110,464 KB
testcase_49 AC 214 ms
124,672 KB
testcase_50 AC 170 ms
117,632 KB
testcase_51 AC 159 ms
112,640 KB
testcase_52 AC 94 ms
81,920 KB
testcase_53 AC 104 ms
84,096 KB
testcase_54 AC 188 ms
122,240 KB
testcase_55 AC 105 ms
85,632 KB
testcase_56 AC 228 ms
135,424 KB
testcase_57 AC 169 ms
115,840 KB
testcase_58 AC 239 ms
144,768 KB
testcase_59 AC 233 ms
144,384 KB
testcase_60 AC 236 ms
144,256 KB
testcase_61 AC 224 ms
144,512 KB
testcase_62 AC 224 ms
144,512 KB
testcase_63 AC 42 ms
52,096 KB
testcase_64 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,k=map(int,input().split())
P=[int(i) for i in input().split()]
A=[[0]*n for i in range(31)]
B=[[0]*n for i in range(31)]
A[0]=P
for i in range(n):
  A[1][i]=(A[0][i]+i+1)%n
  if A[0][i]+i+1>n:
    B[1][i]=1
  if A[1][i]==0:
    A[1][i]=n
for i in range(1,30):
  for j in range(n):
    A[i+1][j]=A[i][A[i][j]-1]
    B[i+1][j]=B[i][j]+B[i][A[i][j]-1]
Ans1=[int(i)+1 for i in range(n)]
Ans2=[0]*n
for i in range(30):
  if k&(1<<i):
    for j in range(n):
      Ans2[j]+=B[i+1][Ans1[j]-1]
      Ans1[j]=A[i+1][Ans1[j]-1]
      
Ans=[]
for i in range(n):
  Ans.append(Ans1[i]+Ans2[i]*n)
print(*Ans,sep="\n")
0