結果
問題 | No.16 累乗の加算 |
ユーザー | Kutimoti_T |
提出日時 | 2017-12-19 17:01:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 437 bytes |
コンパイル時間 | 435 ms |
コンパイル使用メモリ | 54,108 KB |
実行使用メモリ | 393,984 KB |
最終ジャッジ日時 | 2024-05-10 01:15:21 |
合計ジャッジ時間 | 10,368 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 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 | 909 ms
393,984 KB |
testcase_12 | WA | - |
testcase_13 | AC | 888 ms
390,656 KB |
ソースコード
#include <iostream> using namespace std; #define MOD(N) (N % 1000003) #define FOR(i,s,e) for(int i = (s);i <= (e);i++) int dp[100000000]; int N; int x; int max_ = 0; int a[100]; int main() { cin >> x >> N; FOR(i,0,N -1) { cin >> a[i]; max_ = max(max_,a[i]); } dp[0] = 1; FOR(i,1,max_) { dp[i] = MOD(dp[i - 1] * x); } int res = 0; FOR(i,0,N-1) { res = MOD(res + dp[a[i]]); } cout << res << endl; return 0; }