結果

問題 No.1097 Remainder Operation
ユーザー hiro71687khiro71687k
提出日時 2023-03-08 12:54:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 993 bytes
コンパイル時間 4,545 ms
コンパイル使用メモリ 263,912 KB
実行使用メモリ 47,616 KB
最終ジャッジ日時 2024-09-18 02:31:27
合計ジャッジ時間 11,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 39 ms
8,212 KB
testcase_08 AC 40 ms
8,076 KB
testcase_09 AC 37 ms
8,064 KB
testcase_10 AC 37 ms
8,080 KB
testcase_11 AC 38 ms
8,192 KB
testcase_12 AC 451 ms
47,488 KB
testcase_13 AC 481 ms
47,616 KB
testcase_14 AC 460 ms
47,488 KB
testcase_15 AC 475 ms
47,488 KB
testcase_16 AC 463 ms
47,360 KB
testcase_17 AC 416 ms
47,360 KB
testcase_18 AC 398 ms
47,488 KB
testcase_19 AC 441 ms
47,360 KB
testcase_20 AC 449 ms
47,360 KB
testcase_21 AC 582 ms
47,488 KB
testcase_22 AC 554 ms
47,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=10010010010010010;
ll mod=17;
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
    }
    ll q;
    cin >> q;
    vector<vector<ll>>db(n+1000,vector<ll>(50,0));
    for (ll i = 0; i < n; i++)
    {
        db[i][0]=a[i];
    }
    for (ll i = 1; i < 50; i++)
    {
        for (ll j = 0; j < n; j++)
        {
            db[j][i]=db[((db[j][i-1]+j)%n+n)%n][i-1]+db[j][i-1];
        }
    }
    vector<ll>two(50,1);
    for (ll i = 1; i < 50; i++)
    {
        two[i]=two[i-1]*2;
    }
    for (ll i = 0; i < q; i++)
    {
        ll k;
        cin >> k;
        ll now=0;
        for (ll j = 0; j < 50; j++)
        {
            if (two[j]&k)
            {
                now+=db[now%n][j];
            }
        }
        cout << now << endl;
    }
    
}
0