結果

問題 No.1013 〇マス進む
ユーザー rlangevinrlangevin
提出日時 2023-10-18 00:43:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 117,620 KB
最終ジャッジ日時 2024-09-17 21:45:47
合計ジャッジ時間 11,299 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,072 KB
testcase_01 AC 31 ms
51,584 KB
testcase_02 AC 30 ms
52,096 KB
testcase_03 AC 41 ms
63,104 KB
testcase_04 AC 35 ms
59,520 KB
testcase_05 AC 40 ms
62,848 KB
testcase_06 AC 40 ms
63,232 KB
testcase_07 AC 41 ms
62,976 KB
testcase_08 AC 40 ms
61,952 KB
testcase_09 AC 41 ms
62,464 KB
testcase_10 AC 42 ms
63,232 KB
testcase_11 AC 44 ms
62,976 KB
testcase_12 AC 42 ms
62,976 KB
testcase_13 AC 53 ms
67,200 KB
testcase_14 AC 95 ms
94,976 KB
testcase_15 AC 130 ms
107,892 KB
testcase_16 AC 119 ms
104,600 KB
testcase_17 AC 88 ms
92,160 KB
testcase_18 AC 101 ms
96,768 KB
testcase_19 AC 81 ms
87,112 KB
testcase_20 AC 150 ms
115,932 KB
testcase_21 AC 93 ms
90,624 KB
testcase_22 AC 109 ms
97,408 KB
testcase_23 AC 65 ms
76,672 KB
testcase_24 AC 152 ms
116,864 KB
testcase_25 AC 156 ms
115,968 KB
testcase_26 AC 62 ms
76,416 KB
testcase_27 AC 81 ms
89,944 KB
testcase_28 AC 61 ms
76,416 KB
testcase_29 AC 152 ms
115,328 KB
testcase_30 AC 87 ms
87,936 KB
testcase_31 AC 116 ms
100,608 KB
testcase_32 AC 97 ms
94,172 KB
testcase_33 AC 108 ms
94,208 KB
testcase_34 AC 140 ms
106,368 KB
testcase_35 AC 146 ms
103,808 KB
testcase_36 AC 56 ms
68,352 KB
testcase_37 AC 54 ms
67,840 KB
testcase_38 AC 150 ms
108,656 KB
testcase_39 AC 81 ms
83,584 KB
testcase_40 AC 147 ms
106,496 KB
testcase_41 AC 67 ms
77,312 KB
testcase_42 AC 98 ms
92,800 KB
testcase_43 AC 95 ms
86,272 KB
testcase_44 AC 112 ms
94,304 KB
testcase_45 AC 100 ms
92,280 KB
testcase_46 AC 71 ms
78,464 KB
testcase_47 AC 114 ms
92,704 KB
testcase_48 AC 105 ms
97,040 KB
testcase_49 AC 159 ms
105,072 KB
testcase_50 AC 135 ms
100,912 KB
testcase_51 AC 121 ms
97,920 KB
testcase_52 AC 57 ms
72,448 KB
testcase_53 AC 68 ms
81,068 KB
testcase_54 AC 123 ms
103,552 KB
testcase_55 AC 71 ms
79,744 KB
testcase_56 AC 155 ms
112,220 KB
testcase_57 AC 139 ms
100,096 KB
testcase_58 AC 196 ms
117,400 KB
testcase_59 AC 182 ms
117,248 KB
testcase_60 AC 168 ms
117,184 KB
testcase_61 AC 151 ms
117,620 KB
testcase_62 AC 144 ms
117,376 KB
testcase_63 AC 33 ms
52,096 KB
testcase_64 AC 32 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
P = list(map(int, input().split()))
M = 35
dp = [[0] * N for _ in range(M)] 
for i in range(N):
    dp[0][i] = i + P[i]
    
for n in range(1, M):
    for i in range(N):
        dp[n][i] = dp[n - 1][dp[n - 1][i] % N] + dp[n - 1][i] // N * N
        
for i in range(N):
    now = i
    ans = i + 1
    for j in range(M):
        if (K >> j) & 1:
            ans += dp[j][now % N] - now % N
            now = dp[j][now % N]
    print(ans)
0