結果
問題 | No.16 累乗の加算 |
ユーザー | seaca |
提出日時 | 2019-01-06 16:03:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 416 bytes |
コンパイル時間 | 529 ms |
コンパイル使用メモリ | 64,904 KB |
実行使用メモリ | 394,244 KB |
最終ジャッジ日時 | 2024-05-03 03:14:23 |
合計ジャッジ時間 | 7,811 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 485 ms
394,144 KB |
testcase_01 | WA | - |
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 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 393 ms
394,020 KB |
ソースコード
#include <iostream> using namespace std; #define N 100000000 #define Q 1000003 int main(void){ int x,n; int dp[N+1], ans; cin >> x >> n; dp[1] = x; for (int i=2; i<=N; i++){ long long tmp = dp[i/2]*dp[i/2] % Q; if (i%2) tmp = tmp*x % Q; dp[i] = tmp; } ans = 0; for (int i=0; i<n; i++){ int a; cin >> a; ans += dp[a]; ans %= Q; } cout << ans << endl; return 0; }