結果

問題 No.16 累乗の加算
ユーザー mh72012246mh72012246
提出日時 2016-11-16 12:47:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 960 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 78,608 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-08 12:03:29
合計ジャッジ時間 1,471 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <vector>
// #include <array>
#include <queue>
#include <set>
#include <map>
#include <sstream>   // istringstream
#include <algorithm> // sort
#include <utility>   // pair
#include <cfloat>    // DBL_MAX

typedef long long ll;
using namespace std;

const ll diviser = 1000003;

ll power(ll m, ll e){
  if(e==0){ return 1; }
  if(e==1){ return m; }
  if(e==2){ return m*m; }
  ll tmp = power(m,e/2);
  if(e%2==0){
    return (tmp*tmp) % diviser;
  } else {
    return (tmp*tmp*m) % diviser;
  }
}

int main(){
  // input
  ll X,N; // [10]
  cin >> X >> N;
  vector<int> As(N);
  for(int i=0; i<N; i++){
    cin >> As[i];
  }

  // main
  sort(As.begin(), As.end(), greater<ll>());

  vector<int> dif(N);
  for(int i=0; i<N-1; i++){
    dif[i] = As[i]-As[i+1];
  } dif[N-1] = As[N-1];

  ll res = 0;
  for(int i=0; i<N; i++){
    res = ((res+1)*power(X,dif[i])) % diviser;
  }

  cout << res << endl;

  return 0;
}
0