結果

問題 No.1013 〇マス進む
ユーザー merom686merom686
提出日時 2020-03-20 22:34:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 78,436 KB
実行使用メモリ 27,520 KB
最終ジャッジ日時 2024-05-08 22:50:06
合計ジャッジ時間 6,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 37 ms
14,720 KB
testcase_15 AC 63 ms
22,016 KB
testcase_16 AC 60 ms
20,352 KB
testcase_17 AC 33 ms
13,440 KB
testcase_18 AC 41 ms
15,616 KB
testcase_19 AC 24 ms
10,624 KB
testcase_20 AC 74 ms
26,112 KB
testcase_21 AC 30 ms
12,288 KB
testcase_22 AC 43 ms
16,000 KB
testcase_23 AC 14 ms
7,424 KB
testcase_24 AC 74 ms
26,880 KB
testcase_25 AC 73 ms
26,496 KB
testcase_26 AC 16 ms
7,296 KB
testcase_27 AC 27 ms
12,032 KB
testcase_28 AC 15 ms
7,296 KB
testcase_29 AC 69 ms
25,856 KB
testcase_30 AC 27 ms
10,880 KB
testcase_31 AC 47 ms
18,176 KB
testcase_32 AC 34 ms
14,464 KB
testcase_33 AC 41 ms
14,336 KB
testcase_34 AC 69 ms
20,864 KB
testcase_35 AC 74 ms
19,840 KB
testcase_36 AC 7 ms
5,376 KB
testcase_37 AC 6 ms
5,376 KB
testcase_38 AC 75 ms
22,656 KB
testcase_39 AC 28 ms
9,600 KB
testcase_40 AC 84 ms
20,736 KB
testcase_41 AC 23 ms
7,552 KB
testcase_42 AC 45 ms
13,824 KB
testcase_43 AC 29 ms
9,984 KB
testcase_44 AC 44 ms
14,336 KB
testcase_45 AC 42 ms
13,184 KB
testcase_46 AC 23 ms
7,936 KB
testcase_47 AC 40 ms
13,824 KB
testcase_48 AC 47 ms
15,616 KB
testcase_49 AC 83 ms
20,736 KB
testcase_50 AC 61 ms
18,176 KB
testcase_51 AC 55 ms
16,640 KB
testcase_52 AC 13 ms
5,888 KB
testcase_53 AC 18 ms
7,168 KB
testcase_54 AC 64 ms
19,712 KB
testcase_55 AC 25 ms
8,064 KB
testcase_56 AC 96 ms
24,192 KB
testcase_57 AC 70 ms
17,536 KB
testcase_58 AC 113 ms
27,392 KB
testcase_59 AC 107 ms
27,392 KB
testcase_60 AC 102 ms
27,520 KB
testcase_61 AC 74 ms
27,392 KB
testcase_62 AC 71 ms
27,392 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n, k;
    cin >> n >> k;

    vector<vector<ll>> p(30, vector<ll>(n));
    for (int i = 0; i < n; i++) {
        cin >> p[0][i];
    }

    for (int j = 0; j < 30 - 1; j++) {
        for (int i = 0; i < n; i++) {
            ll t = p[j][i];
            p[j + 1][i] = t + p[j][(i + t) % n];
        }
    }

    for (int i = 0; i < n; i++) {
        ll s = i;
        for (int j = 30 - 1; j >= 0; j--) {
            if (k & 1 << j) s += p[j][s % n];
        }
        cout << s + 1 << '\n';
    }

    return 0;
}
0