結果
問題 | No.16 累乗の加算 |
ユーザー | TomorrowNext |
提出日時 | 2021-04-08 02:10:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 604 bytes |
コンパイル時間 | 1,652 ms |
コンパイル使用メモリ | 170,300 KB |
実行使用メモリ | 784,676 KB |
最終ジャッジ日時 | 2024-06-23 06:03:09 |
合計ジャッジ時間 | 18,108 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
ソースコード
#include "bits/stdc++.h" using namespace std; using ll = long long; const ll MOD = 1000003LL; void Main() { ll x, N; cin >> x >> N; vector<ll> a(N, 0); for (int i = 0; i < N; ++i) { cin >> a[i]; } vector<ll> xn(100000001, 0); xn[0] = 1LL; xn[1] = x; for (ll i = 2; i < xn.size(); ++i) { xn[i] = (x * xn[i - 1]) % MOD; } ll ans = 0LL; for (ll i = 0; i < N; ++i) { ans += xn[a[i]]; ans %= MOD; } cout << ans << endl; } int main() { std::cout << std::fixed << std::setprecision(15); Main(); return 0; }