結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 MizarMizar
提出日時 2023-07-07 16:21:16
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 1,451 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 178,328 KB
最終ジャッジ日時 2024-10-06 01:41:58
合計ジャッジ時間 18,154 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
39,296 KB
testcase_01 AC 59 ms
39,168 KB
testcase_02 AC 61 ms
39,040 KB
testcase_03 AC 72 ms
39,296 KB
testcase_04 AC 62 ms
39,168 KB
testcase_05 AC 55 ms
39,040 KB
testcase_06 AC 60 ms
39,296 KB
testcase_07 AC 57 ms
39,040 KB
testcase_08 AC 56 ms
39,040 KB
testcase_09 AC 892 ms
114,944 KB
testcase_10 AC 58 ms
39,296 KB
testcase_11 AC 55 ms
39,296 KB
testcase_12 AC 54 ms
39,168 KB
testcase_13 AC 58 ms
39,296 KB
testcase_14 AC 56 ms
39,424 KB
testcase_15 AC 53 ms
39,296 KB
testcase_16 AC 51 ms
39,040 KB
testcase_17 AC 56 ms
39,296 KB
testcase_18 AC 58 ms
39,040 KB
testcase_19 AC 58 ms
39,168 KB
testcase_20 AC 52 ms
39,168 KB
testcase_21 AC 55 ms
39,168 KB
testcase_22 AC 63 ms
39,168 KB
testcase_23 AC 61 ms
39,168 KB
testcase_24 AC 317 ms
54,656 KB
testcase_25 AC 324 ms
55,140 KB
testcase_26 AC 328 ms
55,296 KB
testcase_27 AC 324 ms
55,524 KB
testcase_28 AC 314 ms
53,760 KB
testcase_29 AC 801 ms
103,788 KB
testcase_30 AC 673 ms
89,008 KB
testcase_31 AC 787 ms
103,664 KB
testcase_32 AC 791 ms
103,920 KB
testcase_33 AC 716 ms
91,236 KB
testcase_34 AC 1,451 ms
177,808 KB
testcase_35 AC 1,209 ms
155,844 KB
testcase_36 AC 1,177 ms
154,100 KB
testcase_37 AC 1,431 ms
178,328 KB
testcase_38 AC 1,216 ms
156,064 KB
testcase_39 AC 397 ms
58,604 KB
testcase_40 AC 328 ms
55,384 KB
testcase_41 AC 388 ms
58,368 KB
testcase_42 AC 327 ms
55,296 KB
testcase_43 AC 351 ms
56,164 KB
testcase_44 AC 99 ms
44,544 KB
testcase_45 AC 192 ms
48,384 KB
testcase_46 AC 92 ms
43,772 KB
testcase_47 AC 82 ms
43,520 KB
testcase_48 AC 184 ms
48,512 KB
testcase_49 AC 52 ms
39,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let l = require("fs").readFileSync("/dev/stdin", "utf8").trim().split("\n");
let n = parseInt(l[0]);
let [a1, b1] = l[1].split(" ").map(s => parseInt(s));
let [a2, b2] = l[2].split(" ").map(s => parseInt(s));
let [a3, b3] = l[3].split(" ").map(s => parseInt(s));

if (a2 * b1 < a1 * b2) {
	[a1, b1, a2, b2] = [a2, b2, a1, b1];
}
if (a3 * b1 < a1 * b3) {
	[a1, b1, a3, b3] = [a3, b3, a1, b1];
}
let w = Math.max(Math.floor(n / a1) - a2 - a3, 0);
let m = n - w * a1;
let dp = Array.from({length: m + 1});
dp[0] = 0;
let r = 0;
for (let i = 1; i <= m; i++) {
	dp[i] = r = Math.max(
		i >= a1 ? dp[i - a1] + b1 : 0,
		i >= a2 ? dp[i - a2] + b2 : 0,
		i >= a3 ? dp[i - a3] + b3 : 0,
		r
	);
}
// ここでBigIntを使わないと精度不足になる
console.log(`${BigInt(r) + BigInt(w) * BigInt(b1)}`);
0