結果

問題 No.1013 〇マス進む
ユーザー takakintakakin
提出日時 2020-03-23 00:07:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 660 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 150,160 KB
最終ジャッジ日時 2024-06-07 20:34:22
合計ジャッジ時間 64,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,948 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 39 ms
11,264 KB
testcase_04 AC 33 ms
10,880 KB
testcase_05 AC 37 ms
11,392 KB
testcase_06 AC 36 ms
11,264 KB
testcase_07 AC 45 ms
11,648 KB
testcase_08 AC 41 ms
11,264 KB
testcase_09 AC 48 ms
11,904 KB
testcase_10 AC 50 ms
11,648 KB
testcase_11 AC 36 ms
11,264 KB
testcase_12 AC 46 ms
11,776 KB
testcase_13 AC 111 ms
15,488 KB
testcase_14 AC 1,182 ms
72,256 KB
testcase_15 AC 1,863 ms
108,412 KB
testcase_16 AC 1,689 ms
103,104 KB
testcase_17 AC 1,042 ms
63,200 KB
testcase_18 AC 1,328 ms
77,184 KB
testcase_19 AC 718 ms
49,152 KB
testcase_20 TLE -
testcase_21 AC 931 ms
60,748 KB
testcase_22 AC 1,303 ms
78,492 KB
testcase_23 AC 402 ms
32,128 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 442 ms
33,408 KB
testcase_27 AC 861 ms
56,644 KB
testcase_28 AC 429 ms
32,512 KB
testcase_29 TLE -
testcase_30 AC 882 ms
53,084 KB
testcase_31 AC 1,595 ms
90,328 KB
testcase_32 AC 1,043 ms
69,804 KB
testcase_33 AC 1,267 ms
70,988 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 169 ms
17,280 KB
testcase_37 AC 155 ms
16,768 KB
testcase_38 TLE -
testcase_39 AC 730 ms
44,576 KB
testcase_40 TLE -
testcase_41 AC 558 ms
34,048 KB
testcase_42 AC 1,276 ms
67,932 KB
testcase_43 AC 770 ms
48,120 KB
testcase_44 AC 1,348 ms
71,132 KB
testcase_45 AC 1,299 ms
64,368 KB
testcase_46 AC 579 ms
36,096 KB
testcase_47 AC 1,173 ms
67,928 KB
testcase_48 AC 1,419 ms
78,364 KB
testcase_49 TLE -
testcase_50 AC 1,828 ms
90,768 KB
testcase_51 AC 1,646 ms
82,856 KB
testcase_52 AC 350 ms
25,088 KB
testcase_53 AC 490 ms
31,744 KB
testcase_54 AC 1,923 ms
101,580 KB
testcase_55 AC 664 ms
37,760 KB
testcase_56 TLE -
testcase_57 AC 1,785 ms
88,472 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
権限があれば一括ダウンロードができます

ソースコード

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