結果

問題 No.1013 〇マス進む
ユーザー H3PO4H3PO4
提出日時 2021-08-25 09:54:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 466 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 157,172 KB
最終ジャッジ日時 2024-11-16 03:17:58
合計ジャッジ時間 52,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 58 ms
12,160 KB
testcase_14 AC 475 ms
31,472 KB
testcase_15 AC 759 ms
41,764 KB
testcase_16 AC 699 ms
41,780 KB
testcase_17 AC 394 ms
27,576 KB
testcase_18 AC 539 ms
33,036 KB
testcase_19 AC 251 ms
20,480 KB
testcase_20 AC 768 ms
41,260 KB
testcase_21 AC 381 ms
27,500 KB
testcase_22 AC 509 ms
31,884 KB
testcase_23 AC 161 ms
17,536 KB
testcase_24 AC 961 ms
53,840 KB
testcase_25 AC 882 ms
49,156 KB
testcase_26 AC 192 ms
18,176 KB
testcase_27 AC 338 ms
25,284 KB
testcase_28 AC 157 ms
16,384 KB
testcase_29 AC 832 ms
44,368 KB
testcase_30 AC 332 ms
24,784 KB
testcase_31 AC 614 ms
37,680 KB
testcase_32 AC 406 ms
30,724 KB
testcase_33 AC 1,088 ms
76,544 KB
testcase_34 AC 1,664 ms
105,072 KB
testcase_35 AC 1,783 ms
107,292 KB
testcase_36 AC 147 ms
17,024 KB
testcase_37 AC 133 ms
17,024 KB
testcase_38 AC 1,897 ms
119,440 KB
testcase_39 AC 675 ms
44,772 KB
testcase_40 TLE -
testcase_41 AC 478 ms
35,960 KB
testcase_42 AC 1,058 ms
68,984 KB
testcase_43 AC 672 ms
44,416 KB
testcase_44 AC 1,155 ms
77,488 KB
testcase_45 AC 996 ms
67,128 KB
testcase_46 AC 567 ms
38,400 KB
testcase_47 AC 952 ms
61,936 KB
testcase_48 AC 1,191 ms
76,604 KB
testcase_49 AC 1,888 ms
104,272 KB
testcase_50 AC 1,659 ms
99,360 KB
testcase_51 AC 1,283 ms
81,264 KB
testcase_52 AC 309 ms
25,984 KB
testcase_53 AC 424 ms
33,152 KB
testcase_54 AC 1,712 ms
111,060 KB
testcase_55 AC 584 ms
39,404 KB
testcase_56 TLE -
testcase_57 AC 1,681 ms
95,736 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 781 ms
43,504 KB
testcase_62 AC 256 ms
20,668 KB
testcase_63 AC 26 ms
10,752 KB
testcase_64 AC 26 ms
10,880 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