結果

問題 No.1013 〇マス進む
ユーザー kibunakibuna
提出日時 2020-03-20 22:19:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 172,284 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-12-15 06:28:35
合計ジャッジ時間 11,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 5 ms
6,816 KB
testcase_14 AC 74 ms
18,048 KB
testcase_15 AC 151 ms
27,392 KB
testcase_16 AC 136 ms
25,216 KB
testcase_17 AC 65 ms
16,128 KB
testcase_18 AC 90 ms
19,072 KB
testcase_19 AC 46 ms
12,544 KB
testcase_20 AC 207 ms
32,896 KB
testcase_21 AC 57 ms
15,104 KB
testcase_22 AC 89 ms
19,712 KB
testcase_23 AC 22 ms
8,448 KB
testcase_24 AC 215 ms
33,792 KB
testcase_25 AC 221 ms
33,152 KB
testcase_26 AC 24 ms
8,576 KB
testcase_27 AC 50 ms
14,336 KB
testcase_28 AC 23 ms
8,448 KB
testcase_29 AC 207 ms
32,128 KB
testcase_30 AC 52 ms
13,184 KB
testcase_31 AC 111 ms
22,272 KB
testcase_32 AC 71 ms
17,408 KB
testcase_33 AC 87 ms
17,408 KB
testcase_34 AC 173 ms
26,112 KB
testcase_35 AC 155 ms
24,576 KB
testcase_36 AC 8 ms
6,816 KB
testcase_37 AC 7 ms
6,816 KB
testcase_38 AC 182 ms
28,416 KB
testcase_39 AC 49 ms
11,136 KB
testcase_40 AC 186 ms
25,856 KB
testcase_41 AC 30 ms
8,704 KB
testcase_42 AC 86 ms
16,768 KB
testcase_43 AC 49 ms
11,904 KB
testcase_44 AC 87 ms
17,536 KB
testcase_45 AC 75 ms
15,744 KB
testcase_46 AC 34 ms
9,216 KB
testcase_47 AC 78 ms
16,896 KB
testcase_48 AC 96 ms
19,328 KB
testcase_49 AC 192 ms
25,728 KB
testcase_50 AC 136 ms
22,400 KB
testcase_51 AC 109 ms
20,352 KB
testcase_52 AC 19 ms
6,816 KB
testcase_53 AC 25 ms
8,064 KB
testcase_54 AC 127 ms
24,576 KB
testcase_55 AC 38 ms
9,344 KB
testcase_56 AC 245 ms
30,336 KB
testcase_57 AC 147 ms
21,504 KB
testcase_58 AC 301 ms
34,432 KB
testcase_59 AC 276 ms
34,432 KB
testcase_60 AC 218 ms
34,304 KB
testcase_61 AC 207 ms
34,304 KB
testcase_62 AC 183 ms
34,304 KB
testcase_63 AC 2 ms
6,816 KB
testcase_64 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint     = long long;
const lint inf = 1LL << 60;
const lint mod = 1000000007;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    lint n, k;
    cin >> n >> k;
    vector<lint> p(n);
    for (int i = 0; i < n; ++i) {
        cin >> p[i];
    }
    vector<vector<lint>> dbl(n, vector<lint>(35, 0));
    for (int i = 0; i < n; ++i) {
        dbl[i][0] = p[i];
    }
    for (int i = 1; i < 35; ++i) {
        for (int j = 0; j < n; ++j) {
            dbl[j][i] = dbl[j][i - 1] + dbl[(j + dbl[j][i - 1]) % n][i - 1];
        }
    }
    for (int i = 0; i < n; ++i) {
        lint curr = i;
        for (int j = 0; j < 35; ++j) {
            if (1LL << j & k) {
                curr += dbl[curr % n][j];
            }
        }
        cout << curr + 1 << "\n";
    }
    return 0;
}
0