結果

問題 No.1013 〇マス進む
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-03-21 01:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,055 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 256,120 KB
最終ジャッジ日時 2024-12-16 01:59:37
合計ジャッジ時間 25,327 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,768 KB
testcase_01 AC 37 ms
52,508 KB
testcase_02 AC 38 ms
53,020 KB
testcase_03 AC 46 ms
64,208 KB
testcase_04 AC 40 ms
61,424 KB
testcase_05 AC 49 ms
64,916 KB
testcase_06 AC 47 ms
65,512 KB
testcase_07 AC 48 ms
65,916 KB
testcase_08 AC 44 ms
64,020 KB
testcase_09 AC 52 ms
65,020 KB
testcase_10 AC 50 ms
65,096 KB
testcase_11 AC 49 ms
64,544 KB
testcase_12 AC 50 ms
65,504 KB
testcase_13 AC 64 ms
74,292 KB
testcase_14 AC 308 ms
152,648 KB
testcase_15 AC 612 ms
215,380 KB
testcase_16 AC 506 ms
200,124 KB
testcase_17 AC 289 ms
146,592 KB
testcase_18 AC 371 ms
168,136 KB
testcase_19 AC 244 ms
128,980 KB
testcase_20 AC 733 ms
246,660 KB
testcase_21 AC 253 ms
140,048 KB
testcase_22 AC 400 ms
171,324 KB
testcase_23 AC 140 ms
103,836 KB
testcase_24 AC 818 ms
252,708 KB
testcase_25 AC 767 ms
248,272 KB
testcase_26 AC 152 ms
104,296 KB
testcase_27 AC 231 ms
127,508 KB
testcase_28 AC 139 ms
104,620 KB
testcase_29 AC 690 ms
242,960 KB
testcase_30 AC 244 ms
129,400 KB
testcase_31 AC 451 ms
186,604 KB
testcase_32 AC 295 ms
151,904 KB
testcase_33 AC 336 ms
152,140 KB
testcase_34 AC 593 ms
207,388 KB
testcase_35 AC 642 ms
200,036 KB
testcase_36 AC 83 ms
83,664 KB
testcase_37 AC 79 ms
82,880 KB
testcase_38 AC 680 ms
220,840 KB
testcase_39 AC 218 ms
122,632 KB
testcase_40 AC 753 ms
207,000 KB
testcase_41 AC 163 ms
105,152 KB
testcase_42 AC 325 ms
151,352 KB
testcase_43 AC 256 ms
126,316 KB
testcase_44 AC 323 ms
152,128 KB
testcase_45 AC 289 ms
144,380 KB
testcase_46 AC 172 ms
107,784 KB
testcase_47 AC 306 ms
151,772 KB
testcase_48 AC 398 ms
169,420 KB
testcase_49 AC 658 ms
206,256 KB
testcase_50 AC 502 ms
186,788 KB
testcase_51 AC 436 ms
175,308 KB
testcase_52 AC 99 ms
82,820 KB
testcase_53 AC 138 ms
101,480 KB
testcase_54 AC 480 ms
199,532 KB
testcase_55 AC 174 ms
107,596 KB
testcase_56 AC 731 ms
232,604 KB
testcase_57 AC 527 ms
177,340 KB
testcase_58 AC 1,055 ms
255,756 KB
testcase_59 AC 965 ms
256,108 KB
testcase_60 AC 854 ms
255,992 KB
testcase_61 AC 775 ms
255,728 KB
testcase_62 AC 675 ms
256,120 KB
testcase_63 AC 35 ms
52,384 KB
testcase_64 AC 33 ms
52,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
P = list(map(int, input().split()))
d = [0]*N
for i in range(N):
    d[i] = (P[i]+i) % N
M = 40
step = [[0]*(M+1) for _ in range(N)]
for i in range(N):
    step[i][0] = (d[i], int(d[i]<=i))

for i in range(1, M+1):
    for j in range(N):
        c, cy = step[j][i-1]
        c, cy2 = step[c][i-1]
        step[j][i] = (c, cy+cy2)

for i in range(N):
    tmp = K
    c = i
    cys = 0
    for j in range(M+1):
        if tmp % 2:
            c, cy = step[c][j]
            cys += cy
        tmp //= 2
    print(c+1+cys*N)
0