結果
問題 | No.3046 yukicoderの過去問 |
ユーザー | beet |
提出日時 | 2019-04-03 20:41:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 458 bytes |
コンパイル時間 | 2,721 ms |
コンパイル使用メモリ | 212,380 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-02 10:05:11 |
合計ジャッジ時間 | 6,248 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
10,624 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
#pragma GCC optimize ("O3") #pragma GCC target ("avx") #include<bits/stdc++.h> using namespace std; //INSERT ABOVE HERE const int MAX = 1<<17; const int MOD = 1e9+7; int x[MAX]; int dp[MAX*2]={}; signed main(){ int k,n; cin>>k>>n; for(int i=0;i<n;i++) cin>>x[i]; dp[0]=1; for(int l=0;l<MAX;l++){ dp[l]%=MOD; for(int i=0;i<n;i++){ dp[l+x[i]]+=(dp[l+x[i]]+dp[l]>=MOD)?dp[l]-MOD:dp[l]; } } cout<<dp[k]<<endl; return 0; }