結果

問題 No.8046 yukicoderの過去問
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-04-02 16:22:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 32,384 KB
最終ジャッジ日時 2025-01-07 01:18:28
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 8
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |   scanf("%d", &K);
      |   ~~~~~^~~~~~~~~~
main.cpp:15:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |   scanf("%d", &N);
      |   ~~~~~^~~~~~~~~~
main.cpp:18:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |     scanf("%d", &x);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

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

#include <stdio.h>

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 = 0; y < K; ++y) {
    const int c = dp[y];
    for (int x = 1; x <= K - y; ++x) {
      if ((dp[y + x] += c) >= MO) {
        dp[y + x] -= MO;
      }
    }
  }
  printf("%d\n", dp[K]);
  return 0;
}
0