結果

問題 No.16 累乗の加算
ユーザー masamasa
提出日時 2015-01-22 15:54:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 959 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 61,384 KB
実行使用メモリ 393,656 KB
最終ジャッジ日時 2024-06-26 04:48:49
合計ジャッジ時間 8,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 959 ms
393,500 KB
testcase_03 AC 307 ms
152,632 KB
testcase_04 AC 331 ms
192,832 KB
testcase_05 AC 409 ms
223,392 KB
testcase_06 AC 506 ms
275,252 KB
testcase_07 AC 558 ms
300,640 KB
testcase_08 AC 660 ms
352,852 KB
testcase_09 AC 728 ms
383,680 KB
testcase_10 AC 716 ms
377,360 KB
testcase_11 AC 751 ms
393,656 KB
testcase_12 AC 742 ms
391,692 KB
testcase_13 AC 743 ms
390,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>

using namespace std;

const int MOD = 1000003;

int main() {
	int x, n;

	cin >> x >> n;
	vector<int> a(n);
	int maxi = 0;
	for (int i = 0; i < n; i++) {
		cin >> a[i];
		maxi = max(maxi, a[i]);
	}

	vector<int> memo(maxi);
	memo[0] = 1;
	for (int i = 1; i <= maxi; i++) {
		memo[i] = (memo[i - 1] * x) % MOD;
	}

	int ans = 0;
	for (int i = 0; i < n; i++) {
		ans = (ans + memo[a[i]]) % MOD;
	}

	cout << ans << endl;
	return 0;
}
0