結果

問題 No.16 累乗の加算
ユーザー legosukelegosuke
提出日時 2021-08-08 02:03:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 203,464 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 01:58:42
合計ジャッジ時間 2,952 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int64_t mod_pow(int64_t x, int64_t n, int m) {
    int64_t res = 1;
    x %= m;
    while (n > 0) {
        if (n & 1) (res *= x) %= m;
        (x *= x) %= m;
        n >>= 1;
    }
    return res;
}

int main() {
    int x, N;
    cin >> x >> N;
    vector<int> a(N);
    for (int i = 0; i < N; ++i) {
        cin >> a[i];
    }
    const int MOD = 1'000'003;
    int ans = 0;
    for (auto aa : a) {
        (ans += mod_pow(x, aa, MOD)) %= MOD;
    }
    cout << ans << endl;

    return 0;
}
0