結果

問題 No.1013 〇マス進む
ユーザー akasia_midoriakasia_midori
提出日時 2022-08-21 09:32:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 1,330 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 137,088 KB
最終ジャッジ日時 2024-10-10 02:26:01
合計ジャッジ時間 12,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 53 ms
63,232 KB
testcase_04 AC 51 ms
63,616 KB
testcase_05 AC 56 ms
66,304 KB
testcase_06 AC 55 ms
65,152 KB
testcase_07 AC 57 ms
65,792 KB
testcase_08 AC 57 ms
65,536 KB
testcase_09 AC 54 ms
64,512 KB
testcase_10 AC 57 ms
65,664 KB
testcase_11 AC 58 ms
65,920 KB
testcase_12 AC 56 ms
65,792 KB
testcase_13 AC 63 ms
70,144 KB
testcase_14 AC 144 ms
104,704 KB
testcase_15 AC 193 ms
123,008 KB
testcase_16 AC 201 ms
119,168 KB
testcase_17 AC 125 ms
100,096 KB
testcase_18 AC 154 ms
106,496 KB
testcase_19 AC 102 ms
91,092 KB
testcase_20 AC 219 ms
134,528 KB
testcase_21 AC 130 ms
98,432 KB
testcase_22 AC 149 ms
107,576 KB
testcase_23 AC 80 ms
79,104 KB
testcase_24 AC 249 ms
136,320 KB
testcase_25 AC 222 ms
134,992 KB
testcase_26 AC 90 ms
80,384 KB
testcase_27 AC 114 ms
96,768 KB
testcase_28 AC 82 ms
79,616 KB
testcase_29 AC 231 ms
133,760 KB
testcase_30 AC 125 ms
94,592 KB
testcase_31 AC 173 ms
112,992 KB
testcase_32 AC 140 ms
103,552 KB
testcase_33 AC 138 ms
103,040 KB
testcase_34 AC 206 ms
120,960 KB
testcase_35 AC 212 ms
117,376 KB
testcase_36 AC 65 ms
68,864 KB
testcase_37 AC 64 ms
68,864 KB
testcase_38 AC 230 ms
124,288 KB
testcase_39 AC 111 ms
87,424 KB
testcase_40 AC 227 ms
120,320 KB
testcase_41 AC 102 ms
80,000 KB
testcase_42 AC 157 ms
101,508 KB
testcase_43 AC 133 ms
91,648 KB
testcase_44 AC 145 ms
103,528 KB
testcase_45 AC 136 ms
99,712 KB
testcase_46 AC 93 ms
81,536 KB
testcase_47 AC 139 ms
101,632 KB
testcase_48 AC 159 ms
107,008 KB
testcase_49 AC 225 ms
119,040 KB
testcase_50 AC 173 ms
112,768 KB
testcase_51 AC 171 ms
108,544 KB
testcase_52 AC 73 ms
74,368 KB
testcase_53 AC 90 ms
83,840 KB
testcase_54 AC 182 ms
117,332 KB
testcase_55 AC 95 ms
82,432 KB
testcase_56 AC 235 ms
129,024 KB
testcase_57 AC 201 ms
111,744 KB
testcase_58 AC 308 ms
137,084 KB
testcase_59 AC 274 ms
136,960 KB
testcase_60 AC 256 ms
137,088 KB
testcase_61 AC 212 ms
136,832 KB
testcase_62 AC 205 ms
136,960 KB
testcase_63 AC 38 ms
52,224 KB
testcase_64 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

# import sys
# input = sys.stdin.readline
# import sys
# sys.setrecursionlimit(10**8)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')

input_count = 0

N, K = mi()
A = mi()

# 最大操作回数よりも大きい2^LOGのLOGをいれる
LOG = 30

# ダブリングのテーブル
dp = [[0 for j in range(N)] for i in range(LOG)]
dp_sum = [[0 for j in range(N)] for i in range(LOG)]  # 加算していくタイプ用

# 初期条件
for i in range(N):
    # 初期の遷移を全て網羅することで2^i回目でも遷移できるようにする
    dp[0][i] = (A[i]+i)%N
    dp_sum[0][i] = A[i]  # 加算していくタイプ用

# 遷移(2のベキ回)
for i in range(1, LOG):
    for j in range(N):
        ind = dp[i - 1][j]
        dp[i][j] = dp[i - 1][ind]

        ind_dp_val = dp_sum[i - 1][j] # 加算していくタイプ用
        dp_sum[i][j] = dp_sum[i - 1][ind] + ind_dp_val # 加算していくタイプ用



# 解を求める

K2 = K
for answer in range(N):
    i = 0
    out = answer+1#A[answer]
    K = K2
    while K:
        if K & 1:
            out += dp_sum[i][answer] # 加算していくタイプ用
            answer = dp[i][answer]
        K >>= 1
        i += 1

    print(out)
0