結果

問題 No.1097 Remainder Operation
ユーザー risujirohrisujiroh
提出日時 2020-06-26 22:15:34
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 4,147 ms
コンパイル使用メモリ 197,904 KB
最終ジャッジ日時 2025-01-11 11:40:24
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#ifdef LOCAL
#include "debug.h"
#else
#define DEBUG(...)
#endif

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int n;
  cin >> n;
  vector<int> a(n);
  for (auto&& e : a) cin >> e;
  vector dp(40, vector(n, 0LL));
  for (int i = 0; i < n; ++i) {
    dp[0][i] = a[i];
  }
  for (int k = 1; k < 40; ++k) {
    for (int i = 0; i < n; ++i) {
      dp[k][i] = dp[k - 1][i] + dp[k - 1][(i + dp[k - 1][i]) % n];
    }
    DEBUG(dp[k - 1]);
  }
  int q;
  cin >> q;
  while (q--) {
    long long m;
    cin >> m;
    auto res = 0LL;
    int i = 0;
    for (int k = 0; k < 40; ++k) {
      if (m >> k & 1) {
        res += dp[k][i];
        i = res % n;
      }
    }
    cout << res << '\n';
  }
}
0