結果

問題 No.16 累乗の加算
ユーザー legosuke
提出日時 2021-08-08 02:03:03
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 2,437 ms
コンパイル使用メモリ 193,476 KB
最終ジャッジ日時 2025-01-23 16:50:14
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

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