結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 MizarMizar
提出日時 2023-07-03 21:53:12
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 1,551 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 45,700 KB
最終ジャッジ日時 2024-07-19 03:23:46
合計ジャッジ時間 25,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
39,040 KB
testcase_01 AC 69 ms
39,424 KB
testcase_02 AC 77 ms
45,312 KB
testcase_03 AC 75 ms
45,184 KB
testcase_04 AC 72 ms
45,184 KB
testcase_05 AC 212 ms
45,056 KB
testcase_06 AC 59 ms
39,040 KB
testcase_07 AC 60 ms
39,168 KB
testcase_08 AC 61 ms
39,040 KB
testcase_09 AC 1,304 ms
45,400 KB
testcase_10 AC 77 ms
45,056 KB
testcase_11 AC 62 ms
39,168 KB
testcase_12 AC 73 ms
44,672 KB
testcase_13 AC 78 ms
45,568 KB
testcase_14 AC 73 ms
45,184 KB
testcase_15 AC 63 ms
39,168 KB
testcase_16 AC 74 ms
44,544 KB
testcase_17 AC 76 ms
44,928 KB
testcase_18 AC 80 ms
45,440 KB
testcase_19 AC 78 ms
45,440 KB
testcase_20 AC 63 ms
39,296 KB
testcase_21 AC 64 ms
38,912 KB
testcase_22 AC 80 ms
45,184 KB
testcase_23 AC 78 ms
45,184 KB
testcase_24 AC 573 ms
45,440 KB
testcase_25 AC 589 ms
45,312 KB
testcase_26 AC 571 ms
45,184 KB
testcase_27 AC 583 ms
45,056 KB
testcase_28 AC 552 ms
45,664 KB
testcase_29 AC 980 ms
45,532 KB
testcase_30 AC 884 ms
45,536 KB
testcase_31 AC 1,004 ms
45,528 KB
testcase_32 AC 961 ms
45,400 KB
testcase_33 AC 959 ms
45,660 KB
testcase_34 AC 1,551 ms
45,700 KB
testcase_35 AC 1,490 ms
45,396 KB
testcase_36 AC 1,452 ms
45,528 KB
testcase_37 AC 1,502 ms
45,400 KB
testcase_38 AC 1,482 ms
45,400 KB
testcase_39 AC 635 ms
45,412 KB
testcase_40 AC 551 ms
45,536 KB
testcase_41 AC 610 ms
45,284 KB
testcase_42 AC 566 ms
45,568 KB
testcase_43 AC 624 ms
45,440 KB
testcase_44 AC 558 ms
45,296 KB
testcase_45 AC 436 ms
45,668 KB
testcase_46 AC 274 ms
45,184 KB
testcase_47 AC 341 ms
45,184 KB
testcase_48 AC 609 ms
45,568 KB
testcase_49 AC 62 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

function solve(n, ap, bp, aq, bq, ar, br) {
	let r = 0, imax = ap * bq, jmax = ap * br;
	for (let i = 0, di = n; i < imax && di >= 0; i += bq, di -= aq) {
		for (let j = 0, dj = di; j < jmax && dj >= 0; j += br, dj -= ar) {
			let t = BigInt(Math.floor(dj / ap)) * BigInt(bp) + BigInt(i + j);
			r = (r < t) ? t : r;
		}
	}
	return r;
}

let r1 = solve(n, a0, b0, a1, b1, a2, b2);
let r2 = solve(n, a1, b1, a2, b2, a0, b0);
let r3 = solve(n, a2, b2, a0, b0, a1, b1);
let r = (r1 > r2 && r1 > r3) ? r1 : (r2 > r3) ? r2 : r3;
console.log(r.toString());
0