結果

問題 No.1013 〇マス進む
ユーザー どららどらら
提出日時 2020-03-21 01:43:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 1,508 ms
コンパイル使用メモリ 169,036 KB
実行使用メモリ 31,652 KB
最終ジャッジ日時 2024-05-09 12:58:08
合計ジャッジ時間 11,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 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 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 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 4 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 11 ms
5,376 KB
testcase_14 AC 107 ms
16,848 KB
testcase_15 AC 177 ms
25,420 KB
testcase_16 AC 157 ms
23,500 KB
testcase_17 AC 94 ms
15,180 KB
testcase_18 AC 118 ms
17,996 KB
testcase_19 AC 72 ms
12,032 KB
testcase_20 AC 211 ms
30,284 KB
testcase_21 AC 90 ms
14,284 KB
testcase_22 AC 124 ms
18,512 KB
testcase_23 AC 42 ms
8,448 KB
testcase_24 AC 213 ms
31,180 KB
testcase_25 AC 214 ms
30,540 KB
testcase_26 AC 43 ms
8,320 KB
testcase_27 AC 82 ms
13,660 KB
testcase_28 AC 44 ms
8,704 KB
testcase_29 AC 203 ms
29,640 KB
testcase_30 AC 77 ms
12,708 KB
testcase_31 AC 136 ms
20,940 KB
testcase_32 AC 102 ms
16,464 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 219 ms
31,596 KB
testcase_62 AC 214 ms
31,604 KB
testcase_63 AC 7 ms
28,108 KB
testcase_64 AC 7 ms
30,152 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