結果

問題 No.1097 Remainder Operation
ユーザー IKyoproIKyopro
提出日時 2020-06-26 21:40:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 206,064 KB
実行使用メモリ 68,324 KB
最終ジャッジ日時 2024-07-04 20:11:38
合計ジャッジ時間 5,776 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_07 AC 13 ms
9,856 KB
testcase_08 AC 13 ms
9,856 KB
testcase_09 AC 13 ms
9,856 KB
testcase_10 AC 13 ms
9,856 KB
testcase_11 AC 13 ms
9,856 KB
testcase_12 AC 129 ms
68,228 KB
testcase_13 AC 167 ms
68,228 KB
testcase_14 AC 163 ms
68,228 KB
testcase_15 AC 178 ms
68,228 KB
testcase_16 AC 144 ms
68,232 KB
testcase_17 AC 106 ms
68,228 KB
testcase_18 AC 99 ms
68,224 KB
testcase_19 AC 119 ms
68,228 KB
testcase_20 AC 118 ms
68,324 KB
testcase_21 AC 236 ms
68,224 KB
testcase_22 AC 227 ms
68,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template <class T, class U> using Pa = pair<T, U>;
template <class T> using vec = vector<T>;
template <class T> using vvec = vector<vec<T>>;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    const int K = 40;
    vec<ll> A(N);
    vvec<ll> ne(K+1,vec<ll>(N)),val = ne;
    for(int i=0;i<N;i++){
        cin >> A[i];
        ne[0][i] = (i+A[i])%N;
        val[0][i] = A[i];
    }
    for(int k=1;k<=K;k++){
        for(int i=0;i<N;i++){
            ne[k][i] = ne[k-1][ne[k-1][i]];
            val[k][i] = val[k-1][i]+val[k-1][ne[k-1][i]];
        }
    }
    int Q;
    cin >> Q;
    while(Q--){
        ll X;
        cin >> X;
        ll ans = 0;
        int now = 0;
        for(int k=K;k>=0;k--){
            if(X>>k&1){
                ans += val[k][now];
                now = ne[k][now];
                X -= 1LL<<k;
            }
        }
        cout << ans << "\n";
    }
}
0