結果

問題 No.16 累乗の加算
ユーザー DialBirdDialBird
提出日時 2016-11-18 18:28:46
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 56,180 KB
実行使用メモリ 11,348 KB
最終ジャッジ日時 2024-05-04 16:58:14
合計ジャッジ時間 1,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>

using namespace std;
typedef long long ll;

#define REP(i,f,l) for(int i=f;i<l;i++)

const ll devider = 1000003;
ll x, n;
ll table[devider];

int main(){
  cin >> x >> n;
  x %= devider;
  table[0] = 1;

  REP(i,1,devider) {
    table[i] = (table[i-1]*x) % devider;
  }

  int sum = 0;
  int val;
  REP(i,0,n){
    cin >> val;
    //1000003は素数なのでフェルマーの小定理を利用する
    sum += table[val%(devider-1)];
  }

  cout<<sum<<endl;
}
0