結果

問題 No.1013 〇マス進む
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-31 23:22:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 113,668 KB
最終ジャッジ日時 2024-11-17 16:52:59
合計ジャッジ時間 9,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,900 KB
testcase_01 AC 30 ms
54,152 KB
testcase_02 AC 29 ms
52,892 KB
testcase_03 AC 39 ms
63,108 KB
testcase_04 AC 36 ms
62,624 KB
testcase_05 AC 39 ms
63,808 KB
testcase_06 AC 40 ms
63,648 KB
testcase_07 AC 40 ms
63,572 KB
testcase_08 AC 39 ms
63,416 KB
testcase_09 AC 39 ms
63,224 KB
testcase_10 AC 40 ms
63,236 KB
testcase_11 AC 39 ms
63,460 KB
testcase_12 AC 39 ms
63,820 KB
testcase_13 AC 44 ms
66,244 KB
testcase_14 AC 89 ms
92,908 KB
testcase_15 AC 116 ms
104,460 KB
testcase_16 AC 115 ms
101,832 KB
testcase_17 AC 81 ms
90,700 KB
testcase_18 AC 95 ms
94,520 KB
testcase_19 AC 68 ms
84,304 KB
testcase_20 AC 133 ms
112,148 KB
testcase_21 AC 82 ms
88,928 KB
testcase_22 AC 93 ms
95,088 KB
testcase_23 AC 56 ms
74,704 KB
testcase_24 AC 140 ms
112,908 KB
testcase_25 AC 130 ms
112,620 KB
testcase_26 AC 58 ms
75,796 KB
testcase_27 AC 74 ms
88,400 KB
testcase_28 AC 56 ms
75,540 KB
testcase_29 AC 127 ms
111,560 KB
testcase_30 AC 77 ms
86,932 KB
testcase_31 AC 105 ms
98,168 KB
testcase_32 AC 89 ms
92,420 KB
testcase_33 AC 93 ms
92,400 KB
testcase_34 AC 119 ms
103,724 KB
testcase_35 AC 125 ms
101,380 KB
testcase_36 AC 48 ms
67,824 KB
testcase_37 AC 47 ms
67,856 KB
testcase_38 AC 126 ms
105,516 KB
testcase_39 AC 70 ms
82,104 KB
testcase_40 AC 135 ms
103,332 KB
testcase_41 AC 62 ms
76,880 KB
testcase_42 AC 89 ms
91,376 KB
testcase_43 AC 72 ms
82,920 KB
testcase_44 AC 92 ms
92,596 KB
testcase_45 AC 88 ms
90,184 KB
testcase_46 AC 63 ms
78,452 KB
testcase_47 AC 86 ms
91,060 KB
testcase_48 AC 98 ms
94,528 KB
testcase_49 AC 131 ms
102,284 KB
testcase_50 AC 114 ms
98,284 KB
testcase_51 AC 108 ms
95,392 KB
testcase_52 AC 53 ms
71,320 KB
testcase_53 AC 56 ms
75,052 KB
testcase_54 AC 113 ms
100,908 KB
testcase_55 AC 65 ms
78,164 KB
testcase_56 AC 140 ms
108,444 KB
testcase_57 AC 120 ms
97,600 KB
testcase_58 AC 167 ms
113,420 KB
testcase_59 AC 156 ms
113,460 KB
testcase_60 AC 157 ms
113,388 KB
testcase_61 AC 132 ms
113,668 KB
testcase_62 AC 130 ms
113,352 KB
testcase_63 AC 30 ms
52,560 KB
testcase_64 AC 29 ms
53,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
P = list(map(int,input().split()))
doubling = [[0]*n for i in range(30)]
for i in range(n):
    doubling[0][i] = P[i]

for i in range(1,30):
    for j in range(n):
        doubling[i][j] = doubling[i-1][j] + doubling[i-1][(doubling[i-1][j]+j)%n]

for i in range(n):
    ans = i+1
    now = i
    nk = k
    for j in range(30)[::-1]:
        if nk >= 1<<j:
            nk -= 1<<j
            ans += doubling[j][now]
            now = (now+doubling[j][now])%n
    print(ans)
0