結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 57 ms
63,488 KB
testcase_04 AC 49 ms
60,416 KB
testcase_05 AC 53 ms
63,616 KB
testcase_06 AC 55 ms
63,744 KB
testcase_07 AC 57 ms
64,256 KB
testcase_08 AC 53 ms
63,232 KB
testcase_09 AC 52 ms
64,256 KB
testcase_10 AC 56 ms
64,256 KB
testcase_11 AC 54 ms
63,488 KB
testcase_12 AC 56 ms
64,512 KB
testcase_13 AC 73 ms
71,808 KB
testcase_14 AC 285 ms
116,124 KB
testcase_15 AC 535 ms
140,896 KB
testcase_16 AC 445 ms
135,260 KB
testcase_17 AC 250 ms
108,416 KB
testcase_18 AC 320 ms
118,864 KB
testcase_19 AC 207 ms
101,632 KB
testcase_20 AC 672 ms
155,144 KB
testcase_21 AC 218 ms
108,632 KB
testcase_22 AC 357 ms
120,552 KB
testcase_23 AC 121 ms
87,508 KB
testcase_24 AC 693 ms
157,928 KB
testcase_25 AC 674 ms
155,968 KB
testcase_26 AC 144 ms
87,496 KB
testcase_27 AC 220 ms
106,432 KB
testcase_28 AC 124 ms
87,584 KB
testcase_29 AC 602 ms
153,776 KB
testcase_30 AC 219 ms
103,284 KB
testcase_31 AC 387 ms
127,852 KB
testcase_32 AC 256 ms
108,400 KB
testcase_33 AC 293 ms
114,436 KB
testcase_34 AC 504 ms
137,080 KB
testcase_35 AC 516 ms
133,652 KB
testcase_36 AC 82 ms
72,976 KB
testcase_37 AC 76 ms
72,644 KB
testcase_38 AC 631 ms
143,308 KB
testcase_39 AC 209 ms
97,720 KB
testcase_40 AC 624 ms
137,020 KB
testcase_41 AC 138 ms
88,056 KB
testcase_42 AC 274 ms
108,604 KB
testcase_43 AC 198 ms
99,720 KB
testcase_44 AC 281 ms
114,800 KB
testcase_45 AC 236 ms
108,368 KB
testcase_46 AC 150 ms
87,608 KB
testcase_47 AC 259 ms
108,372 KB
testcase_48 AC 326 ms
119,524 KB
testcase_49 AC 568 ms
136,540 KB
testcase_50 AC 410 ms
127,672 KB
testcase_51 AC 376 ms
122,084 KB
testcase_52 AC 114 ms
85,384 KB
testcase_53 AC 123 ms
87,256 KB
testcase_54 AC 415 ms
133,284 KB
testcase_55 AC 155 ms
88,004 KB
testcase_56 AC 611 ms
149,064 KB
testcase_57 AC 457 ms
125,404 KB
testcase_58 AC 877 ms
159,704 KB
testcase_59 AC 753 ms
159,532 KB
testcase_60 AC 689 ms
159,372 KB
testcase_61 AC 665 ms
159,628 KB
testcase_62 AC 581 ms
159,364 KB
testcase_63 AC 36 ms
51,840 KB
testcase_64 AC 38 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