結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,020 KB
testcase_01 AC 46 ms
53,264 KB
testcase_02 AC 39 ms
52,560 KB
testcase_03 AC 47 ms
62,556 KB
testcase_04 AC 44 ms
59,764 KB
testcase_05 AC 48 ms
61,284 KB
testcase_06 AC 47 ms
60,900 KB
testcase_07 AC 49 ms
62,036 KB
testcase_08 AC 47 ms
61,732 KB
testcase_09 AC 51 ms
63,216 KB
testcase_10 AC 49 ms
61,480 KB
testcase_11 AC 47 ms
61,968 KB
testcase_12 AC 50 ms
62,640 KB
testcase_13 AC 71 ms
70,796 KB
testcase_14 AC 129 ms
107,752 KB
testcase_15 AC 173 ms
128,796 KB
testcase_16 AC 160 ms
123,692 KB
testcase_17 AC 118 ms
103,592 KB
testcase_18 AC 134 ms
110,172 KB
testcase_19 AC 103 ms
95,288 KB
testcase_20 AC 198 ms
141,736 KB
testcase_21 AC 115 ms
101,092 KB
testcase_22 AC 137 ms
111,756 KB
testcase_23 AC 85 ms
83,192 KB
testcase_24 AC 205 ms
143,900 KB
testcase_25 AC 197 ms
142,604 KB
testcase_26 AC 82 ms
82,644 KB
testcase_27 AC 107 ms
99,776 KB
testcase_28 AC 79 ms
83,360 KB
testcase_29 AC 190 ms
140,504 KB
testcase_30 AC 105 ms
96,856 KB
testcase_31 AC 148 ms
117,616 KB
testcase_32 AC 125 ms
106,396 KB
testcase_33 AC 127 ms
106,584 KB
testcase_34 AC 174 ms
126,704 KB
testcase_35 AC 167 ms
122,720 KB
testcase_36 AC 65 ms
72,488 KB
testcase_37 AC 64 ms
72,080 KB
testcase_38 AC 187 ms
130,668 KB
testcase_39 AC 102 ms
92,420 KB
testcase_40 AC 177 ms
126,076 KB
testcase_41 AC 84 ms
83,208 KB
testcase_42 AC 129 ms
104,904 KB
testcase_43 AC 106 ms
93,708 KB
testcase_44 AC 128 ms
106,720 KB
testcase_45 AC 124 ms
102,776 KB
testcase_46 AC 87 ms
84,724 KB
testcase_47 AC 123 ms
104,592 KB
testcase_48 AC 135 ms
110,668 KB
testcase_49 AC 172 ms
124,860 KB
testcase_50 AC 152 ms
117,712 KB
testcase_51 AC 143 ms
112,796 KB
testcase_52 AC 79 ms
82,132 KB
testcase_53 AC 86 ms
84,100 KB
testcase_54 AC 161 ms
122,296 KB
testcase_55 AC 91 ms
85,892 KB
testcase_56 AC 199 ms
135,844 KB
testcase_57 AC 161 ms
116,308 KB
testcase_58 AC 217 ms
144,876 KB
testcase_59 AC 224 ms
144,596 KB
testcase_60 AC 210 ms
144,648 KB
testcase_61 AC 201 ms
144,504 KB
testcase_62 AC 195 ms
144,652 KB
testcase_63 AC 37 ms
52,468 KB
testcase_64 AC 37 ms
52,424 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