結果

問題 No.16 累乗の加算
ユーザー Yug_min_nullYug_min_null
提出日時 2021-11-15 16:45:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 397 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 185,832 KB
実行使用メモリ 10,272 KB
最終ジャッジ日時 2024-05-08 16:35:20
合計ジャッジ時間 8,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _GLIBCXX_DEBUG
#define ll long long
#include <bits/stdc++.h>
using namespace std;
using Graph = vector<vector<int>>;

int main(){
  int X, N; cin >> X >> N;
  ll ans = 0;
  for(int i = 0; i < N; i++){
    ll A; cin >> A;
    int j = 0;
    ll sum = 1;
    while(j < A){
      sum *= X;
      sum %= 1000003;
      j++;
    }
    ans += sum;
    ans %= 1000003;
  }
  cout << ans << endl;
}
0