結果
問題 | No.16 累乗の加算 |
ユーザー | dnish |
提出日時 | 2017-01-30 18:50:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 335 bytes |
コンパイル時間 | 1,862 ms |
コンパイル使用メモリ | 166,912 KB |
実行使用メモリ | 784,892 KB |
最終ジャッジ日時 | 2024-06-06 09:40:09 |
合計ジャッジ時間 | 15,034 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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; int main(){ int x,N; cin>>x>>N; int a[N]; long long int dp[100000004],sum=0; dp[0]=1; for(int i=1;i<=100000000;i++){ dp[i]=(dp[i-1]*x)%1000003; } for(int i=0;i<N;i++){ cin>>a[i]; } for(int i=0;i<N;i++){ sum+=dp[a[i]]; sum%=1000003; } cout<<sum<<endl; return 0; }