結果

問題 No.16 累乗の加算
ユーザー Kutimoti_TKutimoti_T
提出日時 2017-12-19 17:06:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 956 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 54,236 KB
実行使用メモリ 393,984 KB
最終ジャッジ日時 2024-06-26 05:25:21
合計ジャッジ時間 10,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 956 ms
393,728 KB
testcase_03 AC 364 ms
152,704 KB
testcase_04 AC 462 ms
193,200 KB
testcase_05 AC 540 ms
223,616 KB
testcase_06 AC 656 ms
275,584 KB
testcase_07 AC 716 ms
300,928 KB
testcase_08 AC 836 ms
352,792 KB
testcase_09 AC 913 ms
383,808 KB
testcase_10 AC 897 ms
377,472 KB
testcase_11 AC 937 ms
393,984 KB
testcase_12 AC 929 ms
391,808 KB
testcase_13 AC 930 ms
390,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

#define MOD(N) ((N) % 1000003)
#define FOR(i,s,e) for(int i = (s);i <= (e);i++)

int dp[100000000];

int N;
int x;

int max_ = 0;

int a[100];

int main()
{
	cin >> x >> N;
	FOR(i,0,N -1)
	{
		cin >> a[i];
		max_ = max(max_,a[i]);
	}
	dp[0] = 1;
	FOR(i,1,max_)
	{
		dp[i] = MOD(dp[i - 1] * x);
	}
	int res = 0;
	FOR(i,0,N-1)
	{
		res = MOD(res + dp[a[i]]);
	}
	cout << res << endl;
	return 0;
	
}	
0