結果

問題 No.1013 〇マス進む
ユーザー iqueue02iqueue02
提出日時 2020-03-21 10:34:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 1,615 ms
コンパイル使用メモリ 172,968 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-05-10 04:08:11
合計ジャッジ時間 12,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 126 ms
16,128 KB
testcase_15 AC 189 ms
24,192 KB
testcase_16 AC 176 ms
22,400 KB
testcase_17 AC 98 ms
14,720 KB
testcase_18 AC 129 ms
17,152 KB
testcase_19 AC 74 ms
11,520 KB
testcase_20 AC 234 ms
28,928 KB
testcase_21 AC 88 ms
13,568 KB
testcase_22 AC 128 ms
17,664 KB
testcase_23 AC 39 ms
7,936 KB
testcase_24 AC 239 ms
29,696 KB
testcase_25 AC 230 ms
29,184 KB
testcase_26 AC 42 ms
7,936 KB
testcase_27 AC 83 ms
13,056 KB
testcase_28 AC 42 ms
7,936 KB
testcase_29 AC 225 ms
28,288 KB
testcase_30 AC 79 ms
12,032 KB
testcase_31 AC 148 ms
19,968 KB
testcase_32 AC 106 ms
15,744 KB
testcase_33 AC 114 ms
15,744 KB
testcase_34 AC 195 ms
22,912 KB
testcase_35 AC 192 ms
21,888 KB
testcase_36 AC 14 ms
5,376 KB
testcase_37 AC 13 ms
5,376 KB
testcase_38 AC 215 ms
25,088 KB
testcase_39 AC 73 ms
10,368 KB
testcase_40 AC 218 ms
22,784 KB
testcase_41 AC 48 ms
8,192 KB
testcase_42 AC 117 ms
15,104 KB
testcase_43 AC 73 ms
10,752 KB
testcase_44 AC 123 ms
15,744 KB
testcase_45 AC 106 ms
14,208 KB
testcase_46 AC 53 ms
8,448 KB
testcase_47 AC 111 ms
15,104 KB
testcase_48 AC 136 ms
17,152 KB
testcase_49 AC 217 ms
22,784 KB
testcase_50 AC 162 ms
19,968 KB
testcase_51 AC 148 ms
18,176 KB
testcase_52 AC 29 ms
6,144 KB
testcase_53 AC 41 ms
7,424 KB
testcase_54 AC 170 ms
21,760 KB
testcase_55 AC 60 ms
8,832 KB
testcase_56 AC 244 ms
26,624 KB
testcase_57 AC 198 ms
19,200 KB
testcase_58 AC 350 ms
30,208 KB
testcase_59 AC 296 ms
30,208 KB
testcase_60 AC 259 ms
30,208 KB
testcase_61 AC 236 ms
30,336 KB
testcase_62 AC 221 ms
30,208 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef pair<int,int> P;

int main(){
  int n, k;
  cin >> n >> k;
  vector<int> p(n);
  rep(i,n) cin >> p[i];
  vector<vector<ll>> to(33, vector<ll>(n));
  for (int i = 0; i < n; i++) to[0][i] = p[i];
  for (int i = 0; i < 32; i++) {
    for (int j = 0; j < n; j++) to[i + 1][j] =  to[i][j] + to[i][(j + to[i][j]) % n];
  }

  for (int i = 0; i < n; i++) {
    ll res = i;
    for (int j = 0; j < 32; j++) {
      if (k & (1 << j)) res += to[j][res % n];
    }
    cout << res + 1 << endl;
  }
  return 0;
}
0