結果

問題 No.1097 Remainder Operation
ユーザー NewGardenNewGarden
提出日時 2020-06-26 22:36:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 1,580 ms
コンパイル使用メモリ 171,900 KB
実行使用メモリ 75,292 KB
最終ジャッジ日時 2024-07-04 22:22:28
合計ジャッジ時間 7,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 30 ms
10,368 KB
testcase_08 AC 31 ms
10,368 KB
testcase_09 AC 31 ms
10,368 KB
testcase_10 AC 31 ms
10,368 KB
testcase_11 AC 31 ms
10,368 KB
testcase_12 AC 352 ms
75,168 KB
testcase_13 AC 378 ms
75,164 KB
testcase_14 AC 388 ms
75,164 KB
testcase_15 AC 404 ms
75,292 KB
testcase_16 AC 369 ms
75,164 KB
testcase_17 AC 297 ms
75,164 KB
testcase_18 AC 282 ms
75,168 KB
testcase_19 AC 309 ms
75,160 KB
testcase_20 AC 310 ms
75,164 KB
testcase_21 AC 440 ms
75,160 KB
testcase_22 AC 431 ms
75,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> P;
typedef long long ll;
typedef long double ld;
const int inf=1e9+7;
const ll longinf=1LL<<60;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
#define F first
#define S second
constexpr char ln = '\n';

const int mx=200010;
const ll mod=1e9+7;


int main(){
  int n;
  cin >> n;
  vector<vector<ll>> add(45, vector<ll>(n,0));
  vector<vector<ll>> nxt(45, vector<ll>(n,0));
  rep(i,n){
    cin >> add[0][i];
  }
  rep(i,n){
    nxt[0][i] = (i+add[0][i])%n;
  }
  int q; cin >> q;
  rep(j,43){
      auto nx = nxt[j];
      auto ad = add[j];
      rep(i,n){
        nxt[j+1][i] = nx[nx[i]];
        add[j+1][i] = ad[i] + ad[nx[i]];
      }
  }
  while(q--){
    ll k; cin >> k;
    ll ans = 0;
    int pos = 0;
    int cnt = 0;
    while(k>0){
      if(k%2==1){
        ans += add[cnt][pos];
        pos = nxt[cnt][pos];
      }
      cnt++;
      k/=2;
    }
    cout << ans << ln;
  }  

  return 0;
}
0