結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
38,912 KB
testcase_01 AC 64 ms
39,680 KB
testcase_02 AC 78 ms
44,808 KB
testcase_03 AC 72 ms
44,576 KB
testcase_04 AC 74 ms
44,840 KB
testcase_05 AC 108 ms
44,544 KB
testcase_06 AC 60 ms
39,168 KB
testcase_07 AC 61 ms
39,040 KB
testcase_08 AC 60 ms
39,296 KB
testcase_09 AC 559 ms
44,968 KB
testcase_10 AC 70 ms
44,440 KB
testcase_11 AC 58 ms
39,424 KB
testcase_12 AC 72 ms
44,796 KB
testcase_13 AC 74 ms
44,792 KB
testcase_14 AC 72 ms
44,576 KB
testcase_15 AC 58 ms
39,168 KB
testcase_16 AC 69 ms
44,324 KB
testcase_17 AC 68 ms
44,056 KB
testcase_18 AC 74 ms
44,824 KB
testcase_19 AC 74 ms
44,844 KB
testcase_20 AC 61 ms
39,296 KB
testcase_21 AC 62 ms
38,912 KB
testcase_22 AC 73 ms
44,976 KB
testcase_23 AC 72 ms
44,588 KB
testcase_24 AC 207 ms
45,096 KB
testcase_25 AC 220 ms
44,592 KB
testcase_26 AC 206 ms
44,764 KB
testcase_27 AC 209 ms
44,608 KB
testcase_28 AC 201 ms
44,424 KB
testcase_29 AC 416 ms
44,968 KB
testcase_30 AC 379 ms
44,716 KB
testcase_31 AC 421 ms
44,840 KB
testcase_32 AC 424 ms
44,840 KB
testcase_33 AC 394 ms
44,964 KB
testcase_34 AC 629 ms
44,968 KB
testcase_35 AC 610 ms
45,300 KB
testcase_36 AC 605 ms
45,428 KB
testcase_37 AC 614 ms
45,300 KB
testcase_38 AC 615 ms
45,428 KB
testcase_39 AC 251 ms
44,844 KB
testcase_40 AC 203 ms
44,844 KB
testcase_41 AC 236 ms
44,840 KB
testcase_42 AC 198 ms
44,704 KB
testcase_43 AC 252 ms
44,968 KB
testcase_44 AC 216 ms
44,840 KB
testcase_45 AC 173 ms
44,628 KB
testcase_46 AC 122 ms
44,580 KB
testcase_47 AC 145 ms
44,800 KB
testcase_48 AC 239 ms
44,512 KB
testcase_49 AC 60 ms
38,912 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 solve(n, ap, bp, aq, bq, ar, br) {
	let r = 0n, imax = ap * bq, jmax = ap * br;
	for (let i = 0n, di = n; i < imax && di >= 0n; i += bq, di -= aq) {
		for (let j = 0n, dj = di; j < jmax && dj >= 0n; j += br, dj -= ar) {
			let t = dj / ap * bp + 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