結果
問題 | No.695 square1001 and Permutation 4 |
ユーザー | nikutto_ |
提出日時 | 2018-06-09 19:44:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 515 bytes |
コンパイル時間 | 1,632 ms |
コンパイル使用メモリ | 161,648 KB |
実行使用メモリ | 159,456 KB |
最終ジャッジ日時 | 2024-07-22 19:31:33 |
合計ジャッジ時間 | 3,639 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 15 ms
11,128 KB |
testcase_02 | AC | 29 ms
42,340 KB |
testcase_03 | AC | 29 ms
42,100 KB |
testcase_04 | AC | 60 ms
42,164 KB |
testcase_05 | AC | 55 ms
42,264 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | AC | 26 ms
18,816 KB |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; const ll MOD=100000000000000007; int main(){ int n,m; cin>>n>>m; vector<int> x(m); for(int i=0;i<m;i++) cin>>x[i]; vector<ll> dp(n); dp[0]=1; for(int i=0;i<n-1;i++){ for(int j=0;j<m;j++){ if(i+x[j]<n){ dp[i+x[j]]+=dp[i]; if(dp[i+x[j]]>=MOD){ dp[i+x[j]]-=MOD; } } } } cout<<dp[n-1]<<endl; return 0; }