結果

問題 No.8046 yukicoderの過去問
ユーザー beetbeet
提出日時 2019-04-03 20:41:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 458 bytes
コンパイル時間 3,736 ms
コンパイル使用メモリ 212,252 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-23 06:30:27
合計ジャッジ時間 12,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,496 KB
testcase_01 AC 4 ms
9,344 KB
testcase_02 AC 5 ms
9,216 KB
testcase_03 AC 6 ms
9,216 KB
testcase_04 AC 5 ms
10,496 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}

0