結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 9 ms
5,248 KB
testcase_14 AC 113 ms
16,256 KB
testcase_15 AC 195 ms
24,192 KB
testcase_16 AC 172 ms
22,400 KB
testcase_17 AC 99 ms
14,592 KB
testcase_18 AC 127 ms
17,024 KB
testcase_19 AC 74 ms
11,520 KB
testcase_20 AC 233 ms
28,928 KB
testcase_21 AC 90 ms
13,568 KB
testcase_22 AC 128 ms
17,536 KB
testcase_23 AC 40 ms
7,936 KB
testcase_24 AC 242 ms
29,696 KB
testcase_25 AC 240 ms
29,184 KB
testcase_26 AC 42 ms
7,936 KB
testcase_27 AC 84 ms
13,056 KB
testcase_28 AC 42 ms
7,936 KB
testcase_29 AC 226 ms
28,288 KB
testcase_30 AC 81 ms
11,904 KB
testcase_31 AC 151 ms
19,968 KB
testcase_32 AC 106 ms
15,744 KB
testcase_33 AC 115 ms
15,616 KB
testcase_34 AC 197 ms
22,912 KB
testcase_35 AC 202 ms
21,888 KB
testcase_36 AC 14 ms
6,816 KB
testcase_37 AC 13 ms
6,820 KB
testcase_38 AC 216 ms
24,960 KB
testcase_39 AC 73 ms
10,240 KB
testcase_40 AC 225 ms
22,784 KB
testcase_41 AC 48 ms
8,064 KB
testcase_42 AC 121 ms
15,104 KB
testcase_43 AC 73 ms
10,752 KB
testcase_44 AC 122 ms
15,744 KB
testcase_45 AC 108 ms
14,208 KB
testcase_46 AC 54 ms
8,448 KB
testcase_47 AC 112 ms
15,104 KB
testcase_48 AC 135 ms
17,152 KB
testcase_49 AC 222 ms
22,784 KB
testcase_50 AC 170 ms
19,968 KB
testcase_51 AC 147 ms
18,304 KB
testcase_52 AC 30 ms
6,820 KB
testcase_53 AC 42 ms
7,424 KB
testcase_54 AC 172 ms
21,760 KB
testcase_55 AC 58 ms
8,704 KB
testcase_56 AC 251 ms
26,624 KB
testcase_57 AC 181 ms
19,200 KB
testcase_58 AC 311 ms
30,208 KB
testcase_59 AC 303 ms
30,208 KB
testcase_60 AC 268 ms
30,208 KB
testcase_61 AC 233 ms
30,208 KB
testcase_62 AC 220 ms
30,208 KB
testcase_63 AC 2 ms
6,816 KB
testcase_64 AC 2 ms
6,820 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