結果
問題 | No.8046 yukicoderの過去問 |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-04-02 16:22:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 528 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 34,304 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-30 05:20:14 |
合計ジャッジ時間 | 5,766 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1,009 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#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; }