結果

問題 No.1013 〇マス進む
ユーザー roarisroaris
提出日時 2020-12-02 13:54:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 113,780 KB
最終ジャッジ日時 2024-09-13 10:08:40
合計ジャッジ時間 11,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,484 KB
testcase_01 AC 38 ms
52,680 KB
testcase_02 AC 37 ms
52,684 KB
testcase_03 AC 50 ms
63,412 KB
testcase_04 AC 45 ms
60,544 KB
testcase_05 AC 50 ms
64,088 KB
testcase_06 AC 49 ms
63,756 KB
testcase_07 AC 50 ms
63,680 KB
testcase_08 AC 49 ms
63,244 KB
testcase_09 AC 49 ms
63,068 KB
testcase_10 AC 50 ms
63,760 KB
testcase_11 AC 49 ms
62,776 KB
testcase_12 AC 50 ms
63,400 KB
testcase_13 AC 57 ms
65,816 KB
testcase_14 AC 101 ms
93,172 KB
testcase_15 AC 141 ms
104,748 KB
testcase_16 AC 131 ms
102,336 KB
testcase_17 AC 99 ms
90,908 KB
testcase_18 AC 115 ms
94,716 KB
testcase_19 AC 84 ms
84,020 KB
testcase_20 AC 158 ms
112,248 KB
testcase_21 AC 94 ms
89,108 KB
testcase_22 AC 116 ms
95,708 KB
testcase_23 AC 67 ms
75,532 KB
testcase_24 AC 160 ms
113,240 KB
testcase_25 AC 159 ms
112,516 KB
testcase_26 AC 67 ms
75,544 KB
testcase_27 AC 88 ms
88,456 KB
testcase_28 AC 71 ms
76,104 KB
testcase_29 AC 155 ms
111,716 KB
testcase_30 AC 91 ms
87,132 KB
testcase_31 AC 119 ms
98,224 KB
testcase_32 AC 98 ms
92,416 KB
testcase_33 AC 105 ms
92,644 KB
testcase_34 AC 148 ms
103,560 KB
testcase_35 AC 154 ms
101,316 KB
testcase_36 AC 57 ms
67,288 KB
testcase_37 AC 57 ms
67,572 KB
testcase_38 AC 155 ms
106,028 KB
testcase_39 AC 86 ms
82,612 KB
testcase_40 AC 168 ms
103,656 KB
testcase_41 AC 74 ms
76,488 KB
testcase_42 AC 109 ms
91,028 KB
testcase_43 AC 86 ms
83,256 KB
testcase_44 AC 117 ms
92,452 KB
testcase_45 AC 104 ms
90,732 KB
testcase_46 AC 77 ms
77,664 KB
testcase_47 AC 108 ms
91,436 KB
testcase_48 AC 115 ms
94,924 KB
testcase_49 AC 166 ms
102,300 KB
testcase_50 AC 133 ms
98,536 KB
testcase_51 AC 126 ms
95,572 KB
testcase_52 AC 63 ms
71,852 KB
testcase_53 AC 69 ms
74,868 KB
testcase_54 AC 130 ms
101,488 KB
testcase_55 AC 78 ms
78,572 KB
testcase_56 AC 177 ms
108,544 KB
testcase_57 AC 144 ms
97,764 KB
testcase_58 AC 206 ms
113,564 KB
testcase_59 AC 197 ms
113,652 KB
testcase_60 AC 177 ms
113,480 KB
testcase_61 AC 157 ms
113,780 KB
testcase_62 AC 146 ms
113,644 KB
testcase_63 AC 36 ms
52,364 KB
testcase_64 AC 37 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
P = list(map(int, input().split()))
dp = [[-1]*N for _ in range(31)]

for i in range(N):
    dp[0][i] = P[i]

for i in range(1, 31):
    for j in range(N):
        dp[i][j] = dp[i-1][j]+dp[i-1][(j+dp[i-1][j])%N]

for i in range(N):
    k = K
    now = i
    
    for j in range(31):
        if k&1:
            now += dp[j][now%N]
        
        k >>= 1
    
    print(now+1)
0