結果

問題 No.1013 〇マス進む
ユーザー どららどらら
提出日時 2020-03-21 01:43:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 1,472 ms
コンパイル使用メモリ 169,112 KB
実行使用メモリ 31,464 KB
最終ジャッジ日時 2024-12-16 02:12:30
合計ジャッジ時間 13,765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 9 ms
5,248 KB
testcase_14 AC 100 ms
16,840 KB
testcase_15 AC 182 ms
25,292 KB
testcase_16 AC 147 ms
23,372 KB
testcase_17 AC 85 ms
15,180 KB
testcase_18 AC 109 ms
17,992 KB
testcase_19 AC 64 ms
12,068 KB
testcase_20 AC 207 ms
30,284 KB
testcase_21 AC 79 ms
14,416 KB
testcase_22 AC 110 ms
18,512 KB
testcase_23 AC 34 ms
8,448 KB
testcase_24 AC 208 ms
31,184 KB
testcase_25 AC 202 ms
30,544 KB
testcase_26 AC 40 ms
8,444 KB
testcase_27 AC 75 ms
13,660 KB
testcase_28 AC 38 ms
8,576 KB
testcase_29 AC 199 ms
29,644 KB
testcase_30 AC 69 ms
12,704 KB
testcase_31 AC 127 ms
20,812 KB
testcase_32 AC 94 ms
16,460 KB
testcase_33 WA -
testcase_34 RE -
testcase_35 WA -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 WA -
testcase_42 RE -
testcase_43 WA -
testcase_44 WA -
testcase_45 RE -
testcase_46 RE -
testcase_47 WA -
testcase_48 WA -
testcase_49 RE -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 RE -
testcase_54 WA -
testcase_55 RE -
testcase_56 WA -
testcase_57 RE -
testcase_58 RE -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 215 ms
31,436 KB
testcase_62 AC 207 ms
31,464 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){
    int 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