結果

問題 No.1097 Remainder Operation
ユーザー fastmathfastmath
提出日時 2020-06-26 22:57:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 1,587 ms
コンパイル使用メモリ 168,304 KB
実行使用メモリ 43,136 KB
最終ジャッジ日時 2024-07-04 23:11:46
合計ジャッジ時間 5,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 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 2 ms
5,376 KB
testcase_07 AC 16 ms
7,552 KB
testcase_08 AC 16 ms
7,680 KB
testcase_09 AC 15 ms
7,680 KB
testcase_10 AC 17 ms
7,552 KB
testcase_11 AC 16 ms
7,552 KB
testcase_12 AC 168 ms
43,136 KB
testcase_13 AC 191 ms
43,008 KB
testcase_14 AC 196 ms
43,136 KB
testcase_15 AC 204 ms
43,008 KB
testcase_16 AC 180 ms
43,136 KB
testcase_17 AC 131 ms
43,136 KB
testcase_18 AC 123 ms
43,136 KB
testcase_19 AC 159 ms
43,136 KB
testcase_20 AC 156 ms
43,136 KB
testcase_21 AC 221 ms
43,136 KB
testcase_22 AC 229 ms
43,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ii pair <int, int>
#define app push_back
#define all(a) a.begin(), a.end()
#define bp __builtin_popcountll
#define ll long long
#define mp make_pair
#define f first
#define s second
#define Time (double)clock()/CLOCKS_PER_SEC

const int N = 1e5+7, LG = 50;
int dp[LG][N];

signed main() {
    #ifdef HOME
    freopen("input.txt", "r", stdin);
    #else
    #define endl '\n'
    ios_base::sync_with_stdio(0); cin.tie(0);
    #endif

    int n;
    cin >> n;
    vector <int> a(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
        dp[0][i] = a[i];
    }   

    for (int p = 1; p < LG; ++p) {
        for (int i = 0; i < n; ++i) {
            int mid = (i+dp[p-1][i])%n;
            dp[p][i] = dp[p-1][i]+dp[p-1][mid];
        }   
    }   

    int q;
    cin >> q;

    while (q--) {
        int k;
        cin >> k;
        int ans = 0;
        for (int p = 0; p < LG; ++p) {
            if ((k >> p) & 1) {
                ans += dp[p][ans%n];
            }   
        }   
        cout << ans << endl;
    }   
}
0