結果

問題 No.1097 Remainder Operation
ユーザー betrue12betrue12
提出日時 2020-06-26 21:36:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 202,132 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-07-04 19:57:47
合計ジャッジ時間 8,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 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 31 ms
10,112 KB
testcase_08 AC 31 ms
10,112 KB
testcase_09 AC 30 ms
10,112 KB
testcase_10 AC 31 ms
10,112 KB
testcase_11 AC 30 ms
9,984 KB
testcase_12 AC 336 ms
66,048 KB
testcase_13 AC 354 ms
66,048 KB
testcase_14 AC 374 ms
66,048 KB
testcase_15 AC 382 ms
66,048 KB
testcase_16 AC 352 ms
66,048 KB
testcase_17 AC 286 ms
66,048 KB
testcase_18 AC 265 ms
66,048 KB
testcase_19 AC 301 ms
66,048 KB
testcase_20 AC 297 ms
66,048 KB
testcase_21 AC 422 ms
66,048 KB
testcase_22 AC 425 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int nth_bit(int64_t num, int n){
    return (num >> n) & 1;
}

int main(){
    int N;
    cin >> N;
    vector<int> A(N);
    for(int i=0; i<N; i++) cin >> A[i];
    static int64_t sum[40][100000], nxt[40][100000];
    for(int i=0; i<N; i++){
        sum[0][i] = A[i];
        nxt[0][i] = (i+A[i])%N;
    }
    for(int k=1; k<40; k++) for(int i=0; i<N; i++){
        sum[k][i] = sum[k-1][i] + sum[k-1][nxt[k-1][i]];
        nxt[k][i] = nxt[k-1][nxt[k-1][i]];
    }

    int Q;
    cin >> Q;
    while(Q--){
        int64_t K;
        cin >> K;
        int64_t ans = 0;
        int X = 0;
        for(int k=0; k<40; k++) if(nth_bit(K, k)){
            ans += sum[k][X];
            X = nxt[k][X];
        }
        cout << ans << endl;
    }
    return 0;
}
0