結果

問題 No.1013 〇マス進む
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-23 13:06:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 115,940 KB
最終ジャッジ日時 2024-07-01 12:58:37
合計ジャッジ時間 11,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,064 KB
testcase_01 AC 43 ms
51,836 KB
testcase_02 AC 38 ms
53,008 KB
testcase_03 AC 52 ms
63,832 KB
testcase_04 AC 47 ms
59,764 KB
testcase_05 AC 49 ms
63,180 KB
testcase_06 AC 52 ms
62,788 KB
testcase_07 AC 51 ms
63,440 KB
testcase_08 AC 49 ms
62,680 KB
testcase_09 AC 50 ms
62,664 KB
testcase_10 AC 51 ms
62,772 KB
testcase_11 AC 52 ms
63,468 KB
testcase_12 AC 51 ms
63,740 KB
testcase_13 AC 56 ms
67,292 KB
testcase_14 AC 109 ms
94,224 KB
testcase_15 AC 154 ms
106,524 KB
testcase_16 AC 139 ms
103,352 KB
testcase_17 AC 102 ms
91,652 KB
testcase_18 AC 118 ms
95,640 KB
testcase_19 AC 88 ms
84,812 KB
testcase_20 AC 171 ms
114,172 KB
testcase_21 AC 99 ms
89,716 KB
testcase_22 AC 121 ms
96,548 KB
testcase_23 AC 69 ms
76,032 KB
testcase_24 AC 178 ms
115,316 KB
testcase_25 AC 168 ms
114,884 KB
testcase_26 AC 72 ms
76,184 KB
testcase_27 AC 93 ms
89,360 KB
testcase_28 AC 71 ms
76,756 KB
testcase_29 AC 168 ms
113,552 KB
testcase_30 AC 95 ms
87,652 KB
testcase_31 AC 126 ms
99,872 KB
testcase_32 AC 105 ms
93,264 KB
testcase_33 AC 119 ms
93,640 KB
testcase_34 AC 156 ms
105,044 KB
testcase_35 AC 161 ms
103,124 KB
testcase_36 AC 58 ms
67,396 KB
testcase_37 AC 58 ms
67,496 KB
testcase_38 AC 162 ms
107,460 KB
testcase_39 AC 90 ms
82,776 KB
testcase_40 AC 176 ms
105,044 KB
testcase_41 AC 75 ms
76,888 KB
testcase_42 AC 117 ms
92,388 KB
testcase_43 AC 86 ms
83,792 KB
testcase_44 AC 116 ms
93,512 KB
testcase_45 AC 106 ms
91,256 KB
testcase_46 AC 79 ms
78,044 KB
testcase_47 AC 115 ms
92,112 KB
testcase_48 AC 120 ms
96,000 KB
testcase_49 AC 177 ms
103,848 KB
testcase_50 AC 140 ms
99,492 KB
testcase_51 AC 135 ms
97,076 KB
testcase_52 AC 67 ms
72,468 KB
testcase_53 AC 71 ms
75,164 KB
testcase_54 AC 142 ms
102,416 KB
testcase_55 AC 81 ms
78,628 KB
testcase_56 AC 187 ms
110,356 KB
testcase_57 AC 156 ms
99,268 KB
testcase_58 AC 226 ms
115,940 KB
testcase_59 AC 219 ms
115,596 KB
testcase_60 AC 182 ms
115,584 KB
testcase_61 AC 168 ms
115,652 KB
testcase_62 AC 159 ms
115,784 KB
testcase_63 AC 39 ms
52,264 KB
testcase_64 AC 37 ms
53,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
P = list(map(int, input().split()))

L = 32
D = [[0]*n for _ in range(L+1)]

for i, p in enumerate(P):
    D[0][i] = p

for i in range(L):
    for j in range(n):
        D[i+1][j] = D[i][j]+D[i][(j+D[i][j])%n]

for i in range(n):
    ans = i
    for bit in range(L):
        if k & (1 << bit):
            ans += D[bit][ans%n]
    print(ans+1)
0