結果

問題 No.16 累乗の加算
ユーザー otsnskotsnsk
提出日時 2015-01-19 19:59:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 957 bytes
コンパイル時間 1,779 ms
コンパイル使用メモリ 61,116 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-08 11:31:26
合計ジャッジ時間 1,390 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>

#define FORR(i,b,e) for(int i=(b);i<(int)(e);++i)
#define FOR(i,e) FORR(i,0,e)
#define dump(var) cerr << #var ": " << var << "\n"
#define dumpc(con) for(auto& e: con) cerr << e << " "; cerr<<"\n"

typedef long long ll;
typedef unsigned long long ull;

const ll MODD = 1000003;

using namespace std;

ll x, N;
vector<ll> pp;


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

    cin >> x >> N;

    pp.reserve(100);
    pp.push_back(x);
    ll v = x*x;
    int ex = 1; 
    pp.push_back(v);
    while (ex < 100000000) {
        v = (v * v) % MODD;
        ex *= 2;
        pp.push_back(v);
    }
    
    ll ans = 0;
    FOR(i, N) {
        int a;
        cin >> a;
        ll v = 1;
        auto p = pp.begin();
        while (a) {
            if (a&1) v = (v * (*p)) % MODD;
            a >>= 1;
            p++;
        }
        ans = (ans + v) % MODD;
    }
    cout << ans << endl;

    return 0;
}
0