結果

問題 No.1013 〇マス進む
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-03-21 01:33:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 878 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 159,580 KB
最終ジャッジ日時 2024-05-09 12:45:40
合計ジャッジ時間 23,709 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 48 ms
63,616 KB
testcase_04 AC 43 ms
60,508 KB
testcase_05 AC 49 ms
64,000 KB
testcase_06 AC 50 ms
64,000 KB
testcase_07 AC 51 ms
64,768 KB
testcase_08 AC 47 ms
63,616 KB
testcase_09 AC 49 ms
64,384 KB
testcase_10 AC 49 ms
64,768 KB
testcase_11 AC 50 ms
63,616 KB
testcase_12 AC 53 ms
64,896 KB
testcase_13 AC 65 ms
71,936 KB
testcase_14 AC 287 ms
116,660 KB
testcase_15 AC 538 ms
141,144 KB
testcase_16 AC 477 ms
135,384 KB
testcase_17 AC 262 ms
108,800 KB
testcase_18 AC 367 ms
118,964 KB
testcase_19 AC 221 ms
101,760 KB
testcase_20 AC 681 ms
155,084 KB
testcase_21 AC 238 ms
108,188 KB
testcase_22 AC 393 ms
120,724 KB
testcase_23 AC 120 ms
87,652 KB
testcase_24 AC 732 ms
158,044 KB
testcase_25 AC 683 ms
156,220 KB
testcase_26 AC 122 ms
87,568 KB
testcase_27 AC 212 ms
106,744 KB
testcase_28 AC 121 ms
87,812 KB
testcase_29 AC 617 ms
153,724 KB
testcase_30 AC 203 ms
103,584 KB
testcase_31 AC 401 ms
127,992 KB
testcase_32 AC 259 ms
108,544 KB
testcase_33 AC 287 ms
114,420 KB
testcase_34 AC 547 ms
137,196 KB
testcase_35 AC 542 ms
133,572 KB
testcase_36 AC 74 ms
73,344 KB
testcase_37 AC 71 ms
73,040 KB
testcase_38 AC 657 ms
143,712 KB
testcase_39 AC 195 ms
98,048 KB
testcase_40 AC 637 ms
136,872 KB
testcase_41 AC 141 ms
88,064 KB
testcase_42 AC 308 ms
108,800 KB
testcase_43 AC 209 ms
99,948 KB
testcase_44 AC 304 ms
114,944 KB
testcase_45 AC 265 ms
108,780 KB
testcase_46 AC 153 ms
87,808 KB
testcase_47 AC 299 ms
108,544 KB
testcase_48 AC 365 ms
119,336 KB
testcase_49 AC 581 ms
136,500 KB
testcase_50 AC 447 ms
127,740 KB
testcase_51 AC 416 ms
122,404 KB
testcase_52 AC 110 ms
85,632 KB
testcase_53 AC 134 ms
87,452 KB
testcase_54 AC 461 ms
133,452 KB
testcase_55 AC 151 ms
88,476 KB
testcase_56 AC 662 ms
148,916 KB
testcase_57 AC 480 ms
125,464 KB
testcase_58 AC 878 ms
159,376 KB
testcase_59 AC 790 ms
159,384 KB
testcase_60 AC 705 ms
159,456 KB
testcase_61 AC 679 ms
159,452 KB
testcase_62 AC 599 ms
159,580 KB
testcase_63 AC 36 ms
52,096 KB
testcase_64 AC 37 ms
52,224 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)]
step2 = [[0]*(M+1) for _ in range(N)]
for i in range(N):
    step[i][0] = d[i]
    step2[i][0] = int(d[i]<=i)

for i in range(1, M+1):
    for j in range(N):
        step[j][i] = step[step[j][i-1]][i-1]
        step2[j][i] = step2[j][i-1] + step2[step[j][i-1]][i-1]
#print(step2[0])

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