結果

問題 No.1097 Remainder Operation
ユーザー simansiman
提出日時 2023-03-16 19:20:13
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 2,995 ms
コンパイル使用メモリ 140,280 KB
実行使用メモリ 36,224 KB
最終ジャッジ日時 2024-09-18 09:27:59
合計ジャッジ時間 9,443 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 2 ms
5,376 KB
testcase_07 AC 28 ms
6,656 KB
testcase_08 AC 29 ms
6,656 KB
testcase_09 AC 29 ms
6,656 KB
testcase_10 AC 29 ms
6,656 KB
testcase_11 AC 29 ms
6,528 KB
testcase_12 AC 309 ms
35,968 KB
testcase_13 AC 307 ms
36,096 KB
testcase_14 AC 320 ms
36,096 KB
testcase_15 AC 326 ms
36,224 KB
testcase_16 AC 343 ms
36,164 KB
testcase_17 AC 309 ms
36,096 KB
testcase_18 AC 271 ms
36,096 KB
testcase_19 AC 301 ms
36,096 KB
testcase_20 AC 300 ms
36,096 KB
testcase_21 AC 362 ms
35,968 KB
testcase_22 AC 373 ms
35,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  ll N;
  cin >> N;
  ll A[N];
  for (int i = 0; i < N; ++i) {
    cin >> A[i];
  }

  ll memo[N + 1][41];
  for (int x = 0; x < N; ++x) {
    int r = x % N;
    memo[x][0] = x + A[r];
  }

  for (int step = 1; step <= 40; ++step) {
    for (int i = 0; i < N; ++i) {
      ll x = memo[i][step - 1];
      ll d = x / N;
      ll r = x % N;
      memo[i][step] = d * N + memo[r][step - 1];
    }
  }

  int Q;
  cin >> Q;
  for (int i = 0; i < Q; ++i) {
    ll k;
    cin >> k;
    ll X = 0;

    for (int d = 0; d < 40; ++d) {
      if (k >> d & 1) {
        ll v = X / N;
        ll r = X % N;
        X = v * N + memo[r][d];
      }
    }

    cout << X << endl;
  }

  return 0;
}
0