結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 MizarMizar
提出日時 2023-06-29 21:02:34
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 45,248 KB
最終ジャッジ日時 2024-07-19 03:12:01
合計ジャッジ時間 11,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
39,168 KB
testcase_01 AC 56 ms
39,936 KB
testcase_02 AC 66 ms
45,188 KB
testcase_03 AC 67 ms
44,704 KB
testcase_04 AC 66 ms
44,708 KB
testcase_05 AC 100 ms
44,816 KB
testcase_06 AC 54 ms
38,912 KB
testcase_07 AC 54 ms
39,168 KB
testcase_08 AC 51 ms
39,168 KB
testcase_09 AC 531 ms
45,120 KB
testcase_10 AC 72 ms
45,140 KB
testcase_11 AC 55 ms
39,296 KB
testcase_12 AC 67 ms
44,824 KB
testcase_13 AC 71 ms
44,920 KB
testcase_14 AC 71 ms
44,712 KB
testcase_15 AC 59 ms
39,168 KB
testcase_16 AC 63 ms
44,580 KB
testcase_17 AC 65 ms
44,748 KB
testcase_18 AC 69 ms
44,912 KB
testcase_19 AC 66 ms
44,840 KB
testcase_20 AC 58 ms
39,168 KB
testcase_21 AC 59 ms
38,912 KB
testcase_22 AC 66 ms
44,700 KB
testcase_23 AC 66 ms
44,828 KB
testcase_24 AC 185 ms
44,840 KB
testcase_25 AC 200 ms
44,840 KB
testcase_26 AC 187 ms
44,828 KB
testcase_27 AC 191 ms
44,676 KB
testcase_28 AC 186 ms
44,968 KB
testcase_29 AC 398 ms
44,836 KB
testcase_30 AC 340 ms
45,088 KB
testcase_31 AC 392 ms
44,836 KB
testcase_32 AC 384 ms
44,832 KB
testcase_33 AC 381 ms
44,836 KB
testcase_34 AC 623 ms
44,916 KB
testcase_35 AC 605 ms
45,248 KB
testcase_36 AC 614 ms
44,976 KB
testcase_37 AC 621 ms
45,008 KB
testcase_38 AC 621 ms
45,144 KB
testcase_39 AC 239 ms
44,836 KB
testcase_40 AC 188 ms
44,836 KB
testcase_41 AC 215 ms
45,092 KB
testcase_42 AC 191 ms
44,836 KB
testcase_43 AC 225 ms
45,092 KB
testcase_44 AC 194 ms
44,584 KB
testcase_45 AC 155 ms
44,620 KB
testcase_46 AC 113 ms
44,836 KB
testcase_47 AC 135 ms
44,584 KB
testcase_48 AC 214 ms
44,508 KB
testcase_49 AC 57 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

function co_solve(n, a0, b0, a1, b1, a2, b2) {
	let r = 0n;
	for (let i = 0n; i < a0; i += 1n) {
		let d = n - i * a1;
		if (d < 0n) {
			break;
		}
		for (let j = 0n; j < a0; j += 1n) {
			let t = d / a0 * b0 + i * b1 + j * b2;
			if (r < t) {
				r = t;
			}
			d -= a2;
			if (d < 0n) {
				break;
			}
		}
	}
	return r;
}

let r1 = co_solve(n, a0, b0, a1, b1, a2, b2);
let r2 = co_solve(n, a1, b1, a2, b2, a0, b0);
let r3 = co_solve(n, a2, b2, a0, b0, a1, b1);

let r = r1;
if (r < r2) {
	r = r2;
}
if (r < r3) {
	r = r3;
}

console.log(r.toString());
0