結果

問題 No.16 累乗の加算
ユーザー itezpaceitezpace
提出日時 2016-09-29 08:55:55
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 323 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 55,372 KB
実行使用メモリ 10,020 KB
最終ジャッジ日時 2024-11-21 10:23:46
合計ジャッジ時間 60,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,016 KB
testcase_01 AC 2 ms
9,892 KB
testcase_02 TLE -
testcase_03 AC 2,318 ms
10,020 KB
testcase_04 AC 3,274 ms
9,892 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 532 ms
6,820 KB
testcase_12 TLE -
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;
const int mod=1000003;
int main(){
  ll x,N;cin>>x>>N;
  ll a;
  ll c=0;
  for(ll i=0;i<N;++i){
    cin>>a;
    ll b=1;
    for(ll j=0;j<a;++j){
      b%=mod;
      b*=x;
      b%=mod;
    }
    c%=mod;
    b%=mod;
    c+=b;
    c%=mod;
  }
  cout<<c<<endl;
}
0