結果

問題 No.16 累乗の加算
ユーザー elpheelphe
提出日時 2024-08-19 12:42:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 708 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-19 12:42:09
合計ジャッジ時間 1,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC   target("sse4,avx,tune=native")
#pragma GCC   optimize("O3")
#pragma GCC   optimize("unroll-loops")

#include <iostream>
#include <cstdint>

#define MOD  1'000'003

using namespace std;

constexpr unsigned int pow_mod(const unsigned long long a, const unsigned long long b, const unsigned int mod)
{
	return (b == 0 ? (mod == 1 ? 0 : 1) : (b & 1 ? a % mod : 1) * pow_mod((a % mod) * (a % mod) % mod, b >> 1, mod) % mod);
}

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint16_t x, N, i;
	uint32_t a[100], ans = 0;
	cin >> x >> N;
	for (i = 0; i != N; ++i) cin >> a[i];

	for (i = 0; i != N; ++i)
		ans = (ans + pow_mod(x, a[i], MOD)) % MOD;

	cout << ans << '\n';
	return 0;
}
0