結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 52 ms
63,616 KB
testcase_04 AC 44 ms
59,904 KB
testcase_05 AC 51 ms
64,512 KB
testcase_06 AC 51 ms
64,000 KB
testcase_07 AC 53 ms
64,768 KB
testcase_08 AC 49 ms
63,232 KB
testcase_09 AC 52 ms
64,512 KB
testcase_10 AC 52 ms
64,640 KB
testcase_11 AC 50 ms
63,488 KB
testcase_12 AC 57 ms
64,896 KB
testcase_13 AC 68 ms
73,600 KB
testcase_14 AC 353 ms
152,644 KB
testcase_15 AC 717 ms
215,428 KB
testcase_16 AC 656 ms
200,320 KB
testcase_17 AC 348 ms
146,540 KB
testcase_18 AC 469 ms
167,688 KB
testcase_19 AC 277 ms
129,344 KB
testcase_20 AC 909 ms
246,312 KB
testcase_21 AC 297 ms
140,148 KB
testcase_22 AC 485 ms
171,144 KB
testcase_23 AC 156 ms
103,680 KB
testcase_24 AC 986 ms
252,456 KB
testcase_25 AC 915 ms
248,396 KB
testcase_26 AC 165 ms
104,320 KB
testcase_27 AC 248 ms
127,488 KB
testcase_28 AC 157 ms
104,448 KB
testcase_29 AC 835 ms
243,212 KB
testcase_30 AC 278 ms
129,372 KB
testcase_31 AC 552 ms
186,460 KB
testcase_32 AC 341 ms
151,936 KB
testcase_33 AC 394 ms
152,064 KB
testcase_34 AC 727 ms
207,608 KB
testcase_35 AC 754 ms
199,928 KB
testcase_36 AC 95 ms
83,328 KB
testcase_37 AC 89 ms
82,836 KB
testcase_38 AC 820 ms
221,008 KB
testcase_39 AC 239 ms
122,540 KB
testcase_40 AC 892 ms
207,376 KB
testcase_41 AC 180 ms
104,960 KB
testcase_42 AC 409 ms
151,296 KB
testcase_43 AC 286 ms
125,952 KB
testcase_44 AC 409 ms
152,192 KB
testcase_45 AC 365 ms
144,384 KB
testcase_46 AC 190 ms
107,308 KB
testcase_47 AC 381 ms
151,404 KB
testcase_48 AC 493 ms
168,920 KB
testcase_49 AC 811 ms
206,380 KB
testcase_50 AC 610 ms
186,840 KB
testcase_51 AC 524 ms
175,224 KB
testcase_52 AC 113 ms
82,688 KB
testcase_53 AC 159 ms
101,376 KB
testcase_54 AC 566 ms
199,472 KB
testcase_55 AC 206 ms
107,776 KB
testcase_56 AC 880 ms
232,664 KB
testcase_57 AC 614 ms
177,260 KB
testcase_58 AC 1,199 ms
255,888 KB
testcase_59 AC 1,057 ms
255,800 KB
testcase_60 AC 920 ms
255,860 KB
testcase_61 AC 866 ms
255,804 KB
testcase_62 AC 775 ms
256,124 KB
testcase_63 AC 38 ms
52,352 KB
testcase_64 AC 37 ms
52,096 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