結果

問題 No.3046 yukicoderの過去問
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-04-02 16:19:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 543 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 32,768 KB
実行使用メモリ 10,144 KB
最終ジャッジ日時 2024-05-07 12:21:56
合計ジャッジ時間 3,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#pragma GCC optimize ("O3,unroll-loops")
#pragma GCC target ("avx")

#include <stdio.h>

using Int = long long;

constexpr Int MO = 1000000007;

int K, N;

bool a[100010];
int dp[100010];

int main() {
  scanf("%d", &K);
  scanf("%d", &N);
  for (int i = 0; i < N; ++i) {
    int x;
    scanf("%d", &x);
    a[x] = 1;
  }
  dp[0] = 1;
  for (int y = 1; y <= K; ++y) {
    Int tmp = 0;
    for (int x = 1; x <= y; ++x) {
      if (a[x]) {
        tmp += dp[y - x];
      }
    }
    dp[y] = tmp % MO;
  }
  printf("%d\n", dp[K]);
  return 0;
}
0