結果

問題 No.16 累乗の加算
ユーザー recososo
提出日時 2020-02-11 15:44:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 408 bytes
コンパイル時間 1,531 ms
コンパイル使用メモリ 168,080 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-01 07:59:23
合計ジャッジ時間 1,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mod=1000003;
ll pow_mod(ll n,ll k,ll m){
  ll res=1;
  for(;k>0;k>>=1){
    if(k&1){
      res=(res*n)%m;
    }
    n=(n*n)%m;  
  }
  return res;
}
int main(){
    ll x,n;cin >> x >> n;
    ll ans=0;
    for(int i=0;i<n;i++){
        ll a;cin >> a;
        ans+=pow_mod(x,a,mod);
        ans%=mod;
    }
    cout << ans << endl;
}
0