結果

問題 No.1097 Remainder Operation
ユーザー face4face4
提出日時 2020-07-24 15:38:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 65,812 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-06-25 06:27:22
合計ジャッジ時間 6,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_07 AC 36 ms
7,424 KB
testcase_08 AC 37 ms
7,552 KB
testcase_09 AC 37 ms
7,552 KB
testcase_10 AC 37 ms
7,552 KB
testcase_11 AC 38 ms
7,552 KB
testcase_12 AC 395 ms
42,368 KB
testcase_13 AC 410 ms
42,624 KB
testcase_14 AC 417 ms
42,624 KB
testcase_15 AC 426 ms
42,368 KB
testcase_16 AC 396 ms
42,624 KB
testcase_17 AC 341 ms
42,496 KB
testcase_18 AC 326 ms
42,368 KB
testcase_19 AC 360 ms
42,624 KB
testcase_20 AC 368 ms
42,496 KB
testcase_21 AC 494 ms
42,496 KB
testcase_22 AC 479 ms
42,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
typedef long long ll;

ll db[50][100000] = {}; // 40~overflowするかもしれないけどどうせ使わないからいい

int main(){
    int n;
    cin >> n;
    for(int i = 0; i < n; i++)  cin >> db[0][i];
    for(int i = 1; i < 50; i++){
        for(int j = 0; j < n; j++){
            db[i][j] = db[i-1][j] + db[i-1][(j+db[i-1][j])%n];
        }
    }
    int q;
    cin >> q;
    while(q--){
        ll k;
        cin >> k;
        int pos = 0;
        ll ans = 0;
        for(int i = 0; i < 50; i++){
            if(k>>i&1)  ans += db[i][pos], pos = (pos+db[i][pos]%n)%n;
        }
        cout << ans << endl;
    }
    return 0;
}
0