結果

問題 No.1097 Remainder Operation
ユーザー 沙耶花沙耶花
提出日時 2020-05-24 21:26:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 205,676 KB
実行使用メモリ 38,784 KB
最終ジャッジ日時 2024-05-02 05:15:50
合計ジャッジ時間 8,562 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 2 ms
5,376 KB
testcase_07 AC 36 ms
6,852 KB
testcase_08 AC 35 ms
6,732 KB
testcase_09 AC 32 ms
6,860 KB
testcase_10 AC 31 ms
6,856 KB
testcase_11 AC 32 ms
6,856 KB
testcase_12 AC 386 ms
38,784 KB
testcase_13 AC 389 ms
38,784 KB
testcase_14 AC 391 ms
38,656 KB
testcase_15 AC 400 ms
38,784 KB
testcase_16 AC 381 ms
38,784 KB
testcase_17 AC 338 ms
38,784 KB
testcase_18 AC 332 ms
38,784 KB
testcase_19 AC 385 ms
38,784 KB
testcase_20 AC 368 ms
38,784 KB
testcase_21 AC 507 ms
38,784 KB
testcase_22 AC 502 ms
38,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000000000

int main(){
	
	int N;
	cin>>N;
	
	vector<int> A(N);
	for(int i=0;i<N;i++){
		cin>>A[i];
	}
	
	vector<vector<long long>> doubling(N,vector<long long>(40,0LL));
	
	for(int i=0;i<40;i++){
		for(int j=0;j<N;j++){
			if(i==0){
				doubling[j][i] = A[j];
			}
			else{
				doubling[j][i] = doubling[j][i-1] + doubling[((doubling[j][i-1]+j)%N)][i-1];
			}
		}
	}
	
	int Q;
	cin>>Q;
	
	for(int i=0;i<Q;i++){
		long long K;
		cin>>K;
		
		long long ans = 0;
		for(int j=0;j<40;j++){
			if((K>>j)&1){
				ans += doubling[ans%N][j];
			}
		}
		cout<<ans<<endl;
	}
	
	return 0;
}
0