結果
問題 | No.3046 yukicoderの過去問 |
ユーザー | 1119_2916 |
提出日時 | 2019-04-01 22:23:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,393 bytes |
コンパイル時間 | 1,416 ms |
コンパイル使用メモリ | 166,556 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-05 08:14:25 |
合計ジャッジ時間 | 4,867 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize ("Ofast") #pragma GCC target ("avx") using namespace std; #define INF 1001000100010001000 #define MOD 1000000007 #define EPS 1e-10 #define int long long #define rep(i, N) for (int i = 0; i < N; i++) #define Rep(i, N) for (int i = 1; i < N; i++) #define For(i, a, b) for (int i = (a); i < (b); i++) #define pb push_back #define eb emplace_back #define mp make_pair #define pii pair<int, int> #define vi vector<int> #define vvi vector<vi > #define vb vector<bool> #define vvb vector<vb > #define vp vector< pii > #define all(a) (a).begin(), (a).end() #define Int(x) int x; cin >> x; #define int2(x, y) Int(x); Int(y); #define int3(x, y, z) Int(x); int2(y, z); #define in(x, a, b) ((a) <= (x) && (x) < (b)) #define fir first #define sec second #define ffir first.first #define fsec first.second #define sfir second.first #define ssec second.second #define Decimal fixed << setprecision(10) //int dxy[5] = {0, 1, 0, -1, 0}; // cmd int dp[101000], data[101000]; signed main() { std::ios::sync_with_stdio(false); std::cin.tie(0); int2(n, m); for (int i = 0; i < m; i++) { cin >> data[i]; } dp[0] = 1; rep(i, n) { rep(j, m) { if (i + data[j] > n) break; dp[i+data[j]] = (dp[i+data[j]] + dp[i]) % MOD; } } std::cout << dp[n] << std::endl; return 0; }