結果

問題 No.1013 〇マス進む
ユーザー どららどらら
提出日時 2020-03-21 01:44:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 1,540 ms
コンパイル使用メモリ 169,164 KB
実行使用メモリ 31,624 KB
最終ジャッジ日時 2024-05-09 12:58:30
合計ジャッジ時間 11,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
28,112 KB
testcase_01 AC 6 ms
28,236 KB
testcase_02 AC 7 ms
30,156 KB
testcase_03 AC 8 ms
28,116 KB
testcase_04 AC 7 ms
28,120 KB
testcase_05 AC 8 ms
28,136 KB
testcase_06 AC 8 ms
28,124 KB
testcase_07 AC 8 ms
28,260 KB
testcase_08 AC 7 ms
28,120 KB
testcase_09 AC 9 ms
28,140 KB
testcase_10 AC 8 ms
28,132 KB
testcase_11 AC 8 ms
30,284 KB
testcase_12 AC 8 ms
28,120 KB
testcase_13 AC 14 ms
28,356 KB
testcase_14 AC 105 ms
30,716 KB
testcase_15 AC 170 ms
30,804 KB
testcase_16 AC 158 ms
30,308 KB
testcase_17 AC 92 ms
29,420 KB
testcase_18 AC 115 ms
29,560 KB
testcase_19 AC 70 ms
29,100 KB
testcase_20 AC 208 ms
31,360 KB
testcase_21 AC 87 ms
29,384 KB
testcase_22 AC 119 ms
29,608 KB
testcase_23 AC 41 ms
28,776 KB
testcase_24 AC 211 ms
31,552 KB
testcase_25 AC 206 ms
31,364 KB
testcase_26 AC 43 ms
28,636 KB
testcase_27 AC 80 ms
29,324 KB
testcase_28 AC 43 ms
28,896 KB
testcase_29 AC 199 ms
31,436 KB
testcase_30 AC 75 ms
30,528 KB
testcase_31 AC 133 ms
30,844 KB
testcase_32 AC 100 ms
29,692 KB
testcase_33 AC 109 ms
29,616 KB
testcase_34 AC 174 ms
30,516 KB
testcase_35 AC 173 ms
30,276 KB
testcase_36 AC 19 ms
28,332 KB
testcase_37 AC 18 ms
28,284 KB
testcase_38 AC 189 ms
30,796 KB
testcase_39 AC 68 ms
28,968 KB
testcase_40 AC 187 ms
30,592 KB
testcase_41 AC 48 ms
28,828 KB
testcase_42 AC 111 ms
29,644 KB
testcase_43 AC 71 ms
29,240 KB
testcase_44 AC 112 ms
29,800 KB
testcase_45 AC 101 ms
29,520 KB
testcase_46 AC 53 ms
28,796 KB
testcase_47 AC 109 ms
29,384 KB
testcase_48 AC 120 ms
29,952 KB
testcase_49 AC 192 ms
30,536 KB
testcase_50 AC 151 ms
29,956 KB
testcase_51 AC 138 ms
29,868 KB
testcase_52 AC 32 ms
28,492 KB
testcase_53 AC 44 ms
30,528 KB
testcase_54 AC 164 ms
30,344 KB
testcase_55 AC 57 ms
28,868 KB
testcase_56 AC 226 ms
30,980 KB
testcase_57 AC 158 ms
30,204 KB
testcase_58 AC 257 ms
31,588 KB
testcase_59 AC 249 ms
31,564 KB
testcase_60 AC 256 ms
31,408 KB
testcase_61 AC 215 ms
31,624 KB
testcase_62 AC 206 ms
31,440 KB
testcase_63 AC 7 ms
27,984 KB
testcase_64 AC 7 ms
28,108 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