結果
問題 | No.2390 Udon Coupon (Hard) |
ユーザー | GlinTFraulein |
提出日時 | 2023-04-26 15:40:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 773 bytes |
コンパイル時間 | 4,476 ms |
コンパイル使用メモリ | 261,600 KB |
実行使用メモリ | 818,176 KB |
最終ジャッジ日時 | 2024-07-19 03:05:33 |
合計ジャッジ時間 | 10,202 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 5 ms
5,760 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | MLE | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #define elif else if #define ll long long #define vll vector<long long> #define vec vector #define embk emplace_back #define rep(i, n) for (int i = 0; i < n; i++) #define rep3(i, n, k) for (int i = k; i < n; i++) #define all(a) a.begin(), a.end() using namespace std; using namespace atcoder; const ll INF = 1LL << 60; const ll mod = 998244353; int main() { ll n; cin >> n; vll a(3), b(3); rep(i, 3) cin >> a[i] >> b[i]; ll k = lcm(a[0], lcm(a[1], a[2])); vll dp(k+110); //dp[うどん札の枚数] = 割引額の最大 rep(i, k) { rep(j, 3) { dp[i+a[j]] = max(dp[i+a[j]], dp[i] + b[j]); } } ll mlt = (n / k) % mod; ll dpk = dp[k] % mod; cout << (dpk * mlt + dp[n%k]) % mod << endl; }