結果

問題 No.1097 Remainder Operation
ユーザー KKT89KKT89
提出日時 2020-06-26 21:52:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 864 ms
コンパイル使用メモリ 84,872 KB
実行使用メモリ 62,444 KB
最終ジャッジ日時 2024-07-04 20:45:30
合計ジャッジ時間 5,460 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 23 ms
9,728 KB
testcase_08 AC 24 ms
9,600 KB
testcase_09 AC 22 ms
9,856 KB
testcase_10 AC 25 ms
9,728 KB
testcase_11 AC 24 ms
9,728 KB
testcase_12 AC 197 ms
62,284 KB
testcase_13 AC 213 ms
62,316 KB
testcase_14 AC 210 ms
62,200 KB
testcase_15 AC 236 ms
62,260 KB
testcase_16 AC 204 ms
62,264 KB
testcase_17 AC 180 ms
62,304 KB
testcase_18 AC 172 ms
62,208 KB
testcase_19 AC 186 ms
62,280 KB
testcase_20 AC 188 ms
62,444 KB
testcase_21 AC 266 ms
62,316 KB
testcase_22 AC 262 ms
62,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
using namespace std;
typedef long long int ll;

int to[50][100100];
ll sum[50][100100];

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n; cin >> n;
    vector<int> a(n);
    for(int i=0;i<n;i++){
        cin >> a[i];
        to[0][i]=(i+a[i])%n;
        sum[0][i]=a[i];
    }
    for(int i=0;i<49;i++){
        for(int j=0;j<n;j++){
            to[i+1][j]=to[i][to[i][j]];
            sum[i+1][j]=sum[i][j]+sum[i][to[i][j]];
        }
    }
    int q; cin >> q;
    while(q--){
        ll k; cin >> k;
        int now=0;
        ll res=0;
        for(int i=49;i>=0;i--){
            if((k>>i)&1){
                res+=sum[i][now];
                now=to[i][now];
            }
        }
        cout << res << endl;
    }
}
0