結果

問題 No.1097 Remainder Operation
ユーザー iqueue02iqueue02
提出日時 2020-06-26 22:14:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 205,844 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-07-04 21:50:20
合計ジャッジ時間 8,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 36 ms
8,064 KB
testcase_08 AC 37 ms
8,064 KB
testcase_09 AC 36 ms
8,064 KB
testcase_10 AC 36 ms
8,064 KB
testcase_11 AC 37 ms
8,064 KB
testcase_12 AC 382 ms
52,224 KB
testcase_13 AC 409 ms
52,224 KB
testcase_14 AC 411 ms
52,224 KB
testcase_15 AC 424 ms
52,224 KB
testcase_16 AC 396 ms
52,224 KB
testcase_17 AC 351 ms
52,224 KB
testcase_18 AC 334 ms
52,224 KB
testcase_19 AC 361 ms
52,352 KB
testcase_20 AC 368 ms
52,224 KB
testcase_21 AC 460 ms
52,224 KB
testcase_22 AC 466 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
typedef pair<ll, int> PL;
constexpr ll INF = (1LL << 60);

int main() {
  int n;
  cin >> n;
  vector<int> a(n);
  rep(i,n) cin >> a[i];
  
  vector<vector<ll>> to(61, vector<ll>(n, 0));

  for (int i = 0; i < n; i++) to[0][i] = a[i];

  for (int i = 0; i < 60; i++) {
    for (int j = 0; j < n; j++) to[i + 1][j] = to[i][j] + to[i][(j + to[i][j]) % n];
  }

  int q;
  cin >> q;

  while (q--) {
    ll k;
    cin >> k;
    ll res = 0;
    for (int j = 0; j < 60; j++) {
      if (k & (1LL << j)) res += to[j][res % n];
    }
    cout << res << endl;
  }

  return 0;
} 
0