結果

問題 No.1013 〇マス進む
ユーザー どららどらら
提出日時 2020-03-21 01:44:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 1,498 ms
コンパイル使用メモリ 169,188 KB
実行使用メモリ 31,564 KB
最終ジャッジ日時 2024-12-16 02:12:54
合計ジャッジ時間 10,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 10 ms
5,248 KB
testcase_14 AC 100 ms
16,848 KB
testcase_15 AC 163 ms
25,424 KB
testcase_16 AC 157 ms
23,368 KB
testcase_17 AC 98 ms
15,180 KB
testcase_18 AC 107 ms
17,996 KB
testcase_19 AC 64 ms
12,068 KB
testcase_20 AC 200 ms
30,156 KB
testcase_21 AC 79 ms
14,412 KB
testcase_22 AC 114 ms
18,376 KB
testcase_23 AC 40 ms
8,448 KB
testcase_24 AC 209 ms
31,180 KB
testcase_25 AC 191 ms
30,460 KB
testcase_26 AC 37 ms
8,320 KB
testcase_27 AC 72 ms
13,668 KB
testcase_28 AC 37 ms
8,576 KB
testcase_29 AC 185 ms
29,648 KB
testcase_30 AC 69 ms
12,580 KB
testcase_31 AC 125 ms
20,816 KB
testcase_32 AC 98 ms
16,336 KB
testcase_33 AC 99 ms
16,460 KB
testcase_34 AC 163 ms
24,008 KB
testcase_35 AC 161 ms
22,864 KB
testcase_36 AC 14 ms
5,248 KB
testcase_37 AC 13 ms
5,248 KB
testcase_38 AC 181 ms
26,056 KB
testcase_39 AC 61 ms
10,968 KB
testcase_40 AC 182 ms
23,884 KB
testcase_41 AC 43 ms
8,704 KB
testcase_42 AC 101 ms
15,820 KB
testcase_43 AC 66 ms
11,520 KB
testcase_44 AC 102 ms
16,460 KB
testcase_45 AC 91 ms
14,924 KB
testcase_46 AC 51 ms
8,960 KB
testcase_47 AC 95 ms
15,824 KB
testcase_48 AC 113 ms
17,996 KB
testcase_49 AC 184 ms
23,752 KB
testcase_50 AC 156 ms
20,812 KB
testcase_51 AC 133 ms
19,144 KB
testcase_52 AC 29 ms
6,784 KB
testcase_53 AC 40 ms
8,192 KB
testcase_54 AC 156 ms
22,732 KB
testcase_55 AC 51 ms
9,344 KB
testcase_56 AC 205 ms
27,980 KB
testcase_57 AC 155 ms
19,916 KB
testcase_58 AC 242 ms
31,564 KB
testcase_59 AC 239 ms
31,436 KB
testcase_60 AC 233 ms
31,436 KB
testcase_61 AC 214 ms
31,436 KB
testcase_62 AC 197 ms
31,412 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

ll db[35][100005];

int main(){
  ll N, K;
  cin >> N >> K;
  vector<ll> P;
  rep(i,N){
    ll a;
    cin >> a;
    P.push_back(a);
    db[0][i] = a;
  }

  rep(i,34){
    rep(j,N){
      db[i+1][j] = db[i][j] + db[i][(db[i][j]+j)%N];
    }
  }
  
  rep(i,N){
    ll pos = i;
    for(int j=34; j>=0; j--){
      if((K>>j)&1){
        pos += db[j][pos%N];
      }
    }
    cout << pos+1 << endl;
  }
  
  
  return 0;
}

0