結果

問題 No.1013 〇マス進む
ユーザー H3PO4H3PO4
提出日時 2021-08-25 09:55:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 116,624 KB
最終ジャッジ日時 2024-11-16 03:18:13
合計ジャッジ時間 9,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,436 KB
testcase_01 AC 36 ms
52,952 KB
testcase_02 AC 35 ms
53,584 KB
testcase_03 AC 48 ms
63,824 KB
testcase_04 AC 46 ms
61,660 KB
testcase_05 AC 47 ms
63,516 KB
testcase_06 AC 48 ms
62,956 KB
testcase_07 AC 49 ms
64,188 KB
testcase_08 AC 46 ms
62,692 KB
testcase_09 AC 50 ms
63,620 KB
testcase_10 AC 47 ms
63,468 KB
testcase_11 AC 49 ms
63,316 KB
testcase_12 AC 48 ms
63,476 KB
testcase_13 AC 52 ms
66,504 KB
testcase_14 AC 84 ms
86,664 KB
testcase_15 AC 111 ms
94,120 KB
testcase_16 AC 106 ms
93,064 KB
testcase_17 AC 84 ms
84,920 KB
testcase_18 AC 89 ms
88,212 KB
testcase_19 AC 74 ms
81,436 KB
testcase_20 AC 116 ms
98,040 KB
testcase_21 AC 78 ms
84,268 KB
testcase_22 AC 91 ms
88,048 KB
testcase_23 AC 59 ms
74,076 KB
testcase_24 AC 129 ms
100,336 KB
testcase_25 AC 119 ms
99,384 KB
testcase_26 AC 60 ms
74,020 KB
testcase_27 AC 76 ms
83,632 KB
testcase_28 AC 60 ms
74,340 KB
testcase_29 AC 114 ms
98,428 KB
testcase_30 AC 76 ms
82,688 KB
testcase_31 AC 96 ms
90,560 KB
testcase_32 AC 83 ms
86,852 KB
testcase_33 AC 104 ms
94,016 KB
testcase_34 AC 141 ms
104,196 KB
testcase_35 AC 145 ms
102,796 KB
testcase_36 AC 54 ms
67,732 KB
testcase_37 AC 54 ms
67,516 KB
testcase_38 AC 150 ms
106,772 KB
testcase_39 AC 81 ms
82,804 KB
testcase_40 AC 159 ms
105,160 KB
testcase_41 AC 71 ms
79,024 KB
testcase_42 AC 105 ms
91,668 KB
testcase_43 AC 80 ms
82,832 KB
testcase_44 AC 111 ms
93,744 KB
testcase_45 AC 99 ms
91,056 KB
testcase_46 AC 74 ms
78,976 KB
testcase_47 AC 100 ms
90,708 KB
testcase_48 AC 119 ms
95,064 KB
testcase_49 AC 158 ms
102,736 KB
testcase_50 AC 126 ms
100,272 KB
testcase_51 AC 120 ms
96,304 KB
testcase_52 AC 61 ms
72,284 KB
testcase_53 AC 73 ms
80,612 KB
testcase_54 AC 130 ms
103,368 KB
testcase_55 AC 76 ms
79,004 KB
testcase_56 AC 174 ms
111,292 KB
testcase_57 AC 139 ms
99,208 KB
testcase_58 AC 201 ms
115,644 KB
testcase_59 AC 190 ms
116,624 KB
testcase_60 AC 176 ms
116,456 KB
testcase_61 AC 111 ms
98,380 KB
testcase_62 AC 88 ms
93,748 KB
testcase_63 AC 36 ms
53,144 KB
testcase_64 AC 37 ms
52,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
P = tuple(map(int, input().split()))
doubling = [[0] * N for _ in range(K.bit_length() + 1)]
for i, p in enumerate(P):
    doubling[0][i] = p
for j in range(K.bit_length()):
    for i in range(N):
        doubling[j + 1][i] = doubling[j][i] + doubling[j][(i + doubling[j][i]) % N]

for i in range(N):
    ans = i
    for j in range(K.bit_length()):
        if (K >> j) & 1:
            ans += doubling[j][ans % N]
    print(ans + 1)
0