結果

問題 No.1097 Remainder Operation
ユーザー okok
提出日時 2020-06-26 22:31:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 1,129 bytes
コンパイル時間 864 ms
コンパイル使用メモリ 90,740 KB
実行使用メモリ 75,204 KB
最終ジャッジ日時 2024-07-04 22:16:16
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 13 ms
10,368 KB
testcase_08 AC 13 ms
10,368 KB
testcase_09 AC 12 ms
10,368 KB
testcase_10 AC 14 ms
10,368 KB
testcase_11 AC 13 ms
10,368 KB
testcase_12 AC 153 ms
75,204 KB
testcase_13 AC 175 ms
75,200 KB
testcase_14 AC 181 ms
75,204 KB
testcase_15 AC 190 ms
75,204 KB
testcase_16 AC 167 ms
75,080 KB
testcase_17 AC 109 ms
75,200 KB
testcase_18 AC 103 ms
75,200 KB
testcase_19 AC 126 ms
75,204 KB
testcase_20 AC 127 ms
75,204 KB
testcase_21 AC 202 ms
75,076 KB
testcase_22 AC 205 ms
75,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>
#include<utility>

using namespace std;

#define int long long
#define endl "\n"

constexpr long long INF = (long long)1e18;
constexpr long long MOD = 1'000'000'007; 

struct fast_io {
	fast_io(){
		std::cin.tie(nullptr);
		std::ios::sync_with_stdio(false);
	};
} fio;

signed main(){
	cout<<fixed<<setprecision(10);
	
	int N, Q;
	vector<int> A;
	vector<vector<int>> table, table2;
	
	
	cin>>N;
	
	A.resize(N);
	table.resize(45, vector<int>(N));
	table2.resize(45, vector<int>(N));
	
	for(int i = 0; i < N; i++){
		cin>>A[i];
		
		table[0][i] = (A[i] + i)% N;
		table2[0][i] = A[i];
	}
	
	for(int i = 1; i < table.size(); i++){
		for(int j = 0; j < N; j++){
			table[i][j] = table[i-1][table[i-1][j]];
			table2[i][j] = table2[i-1][table[i-1][j]] + table2[i-1][j];
		}
	}
	
	cin>>Q;
	
	for(int i = 0; i < Q; i++){
		int K;
		int res = 0, now = 0;
		
		cin>>K;
		
		for(int i = 0; i < table.size(); i++){
			if((K>>i)&1) {
				res += table2[i][now];
				now = table[i][now];
			}
		}
		
		cout<<res<<endl;
	}
	
	return 0;
}
0