結果

問題 No.1013 〇マス進む
ユーザー takakintakakin
提出日時 2020-03-23 00:07:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 660 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 145,744 KB
最終ジャッジ日時 2024-12-26 05:45:24
合計ジャッジ時間 83,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
15,872 KB
testcase_01 AC 31 ms
138,532 KB
testcase_02 AC 36 ms
15,744 KB
testcase_03 AC 41 ms
129,376 KB
testcase_04 AC 36 ms
16,000 KB
testcase_05 AC 47 ms
143,968 KB
testcase_06 AC 39 ms
16,384 KB
testcase_07 AC 44 ms
135,940 KB
testcase_08 AC 39 ms
16,384 KB
testcase_09 AC 49 ms
11,776 KB
testcase_10 AC 46 ms
11,520 KB
testcase_11 AC 36 ms
11,264 KB
testcase_12 AC 51 ms
11,904 KB
testcase_13 AC 113 ms
15,360 KB
testcase_14 AC 1,233 ms
72,288 KB
testcase_15 TLE -
testcase_16 AC 1,924 ms
103,096 KB
testcase_17 AC 1,142 ms
63,328 KB
testcase_18 AC 1,409 ms
76,952 KB
testcase_19 AC 776 ms
49,152 KB
testcase_20 TLE -
testcase_21 AC 1,169 ms
60,496 KB
testcase_22 AC 1,654 ms
78,240 KB
testcase_23 AC 447 ms
32,128 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 501 ms
33,280 KB
testcase_27 AC 921 ms
56,516 KB
testcase_28 AC 455 ms
32,384 KB
testcase_29 TLE -
testcase_30 AC 874 ms
52,700 KB
testcase_31 AC 1,661 ms
90,200 KB
testcase_32 AC 1,356 ms
69,612 KB
testcase_33 AC 1,631 ms
70,788 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 185 ms
16,896 KB
testcase_37 AC 160 ms
16,512 KB
testcase_38 TLE -
testcase_39 AC 793 ms
44,600 KB
testcase_40 TLE -
testcase_41 AC 561 ms
33,664 KB
testcase_42 AC 1,376 ms
67,676 KB
testcase_43 AC 896 ms
47,864 KB
testcase_44 AC 1,361 ms
70,752 KB
testcase_45 AC 1,217 ms
63,916 KB
testcase_46 AC 628 ms
35,840 KB
testcase_47 AC 1,216 ms
67,668 KB
testcase_48 AC 1,494 ms
78,128 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 AC 1,740 ms
82,980 KB
testcase_52 AC 377 ms
24,960 KB
testcase_53 AC 524 ms
31,360 KB
testcase_54 TLE -
testcase_55 AC 664 ms
37,504 KB
testcase_56 TLE -
testcase_57 AC 1,981 ms
88,216 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 AC 29 ms
10,624 KB
testcase_64 AC 31 ms
145,744 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