結果

問題 No.1097 Remainder Operation
ユーザー kk
提出日時 2020-09-01 19:31:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 201,220 KB
実行使用メモリ 42,888 KB
最終ジャッジ日時 2024-11-20 13:10:21
合計ジャッジ時間 8,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
40,432 KB
testcase_01 AC 10 ms
40,296 KB
testcase_02 AC 9 ms
40,308 KB
testcase_03 AC 9 ms
40,304 KB
testcase_04 AC 9 ms
40,300 KB
testcase_05 AC 9 ms
40,304 KB
testcase_06 AC 9 ms
40,300 KB
testcase_07 AC 34 ms
40,544 KB
testcase_08 AC 33 ms
40,496 KB
testcase_09 AC 31 ms
40,492 KB
testcase_10 AC 33 ms
40,500 KB
testcase_11 AC 34 ms
40,536 KB
testcase_12 AC 250 ms
42,832 KB
testcase_13 AC 259 ms
42,812 KB
testcase_14 AC 275 ms
42,800 KB
testcase_15 AC 273 ms
42,872 KB
testcase_16 AC 255 ms
42,784 KB
testcase_17 AC 228 ms
42,820 KB
testcase_18 AC 220 ms
42,784 KB
testcase_19 AC 263 ms
42,876 KB
testcase_20 AC 246 ms
42,756 KB
testcase_21 AC 346 ms
42,888 KB
testcase_22 AC 341 ms
42,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);

int n;
int a[100000];
long long dp[50][100000];

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  cin >> n;
  REP (i, n) cin >> a[i];

  REP (i, n) dp[0][i] = a[i];
  for (int j = 1; j < 50; j++) {
    for (int i = 0; i < n; i++)
      dp[j][i] = dp[j-1][i] + dp[j-1][(i + dp[j-1][i]) % n];    // i: current state of x, j: log(length)
  }

  int q;
  cin >> q;

  REP (_, q) {
    long long k;
    cin >> k;

    long long x = 0;
    REP (i, 50) {
      if (k & 1LL<<i) {
        x += dp[i][x%n];
      }
    }
    cout << x << endl;    
  }
  
  return 0;
}
0