結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 MizarMizar
提出日時 2023-06-30 00:02:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,604 KB
最終ジャッジ日時 2024-10-06 01:31:37
合計ジャッジ時間 26,717 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 444 ms
43,836 KB
testcase_01 AC 439 ms
44,220 KB
testcase_02 AC 443 ms
44,492 KB
testcase_03 AC 445 ms
44,348 KB
testcase_04 AC 445 ms
43,964 KB
testcase_05 AC 483 ms
44,224 KB
testcase_06 AC 435 ms
43,964 KB
testcase_07 AC 446 ms
44,604 KB
testcase_08 AC 454 ms
44,224 KB
testcase_09 AC 600 ms
44,228 KB
testcase_10 AC 452 ms
43,968 KB
testcase_11 AC 436 ms
43,940 KB
testcase_12 AC 437 ms
44,220 KB
testcase_13 AC 463 ms
44,224 KB
testcase_14 AC 460 ms
44,440 KB
testcase_15 AC 440 ms
44,360 KB
testcase_16 AC 438 ms
44,352 KB
testcase_17 AC 444 ms
44,220 KB
testcase_18 AC 441 ms
44,356 KB
testcase_19 AC 452 ms
44,352 KB
testcase_20 AC 434 ms
44,352 KB
testcase_21 AC 448 ms
44,352 KB
testcase_22 AC 449 ms
44,072 KB
testcase_23 AC 443 ms
44,228 KB
testcase_24 AC 504 ms
44,092 KB
testcase_25 AC 513 ms
44,092 KB
testcase_26 AC 525 ms
44,224 KB
testcase_27 AC 517 ms
44,344 KB
testcase_28 AC 506 ms
44,220 KB
testcase_29 AC 585 ms
44,216 KB
testcase_30 AC 556 ms
43,844 KB
testcase_31 AC 595 ms
43,964 KB
testcase_32 AC 592 ms
44,604 KB
testcase_33 AC 568 ms
43,968 KB
testcase_34 AC 640 ms
44,228 KB
testcase_35 AC 620 ms
44,344 KB
testcase_36 AC 618 ms
44,344 KB
testcase_37 AC 632 ms
44,224 KB
testcase_38 AC 625 ms
44,224 KB
testcase_39 AC 520 ms
44,220 KB
testcase_40 AC 507 ms
43,964 KB
testcase_41 AC 553 ms
43,968 KB
testcase_42 AC 524 ms
44,228 KB
testcase_43 AC 513 ms
44,312 KB
testcase_44 AC 495 ms
44,352 KB
testcase_45 AC 497 ms
43,844 KB
testcase_46 AC 474 ms
44,224 KB
testcase_47 AC 483 ms
44,092 KB
testcase_48 AC 525 ms
43,972 KB
testcase_49 AC 435 ms
44,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def co_solve(n, a0, b0, a1, b1, a2, b2):
	r = 0
	for i, d in zip(range(a0), range(n, 0, -a1)):
		j = np.arange(0, min(a0, d // a2 + 1), dtype=np.uint64)
		v = np.amax(((d - j * a2) // a0) * b0 + i * b1 + j * b2)
		r = max(r, v)
	return r

n = int(input())
a0, b0 = (int(x) for x in input().split())
a1, b1 = (int(x) for x in input().split())
a2, b2 = (int(x) for x in input().split())

result = max(
	co_solve(n, a0, b0, a1, b1, a2, b2),
	co_solve(n, a1, b1, a2, b2, a0, b0),
	co_solve(n, a2, b2, a0, b0, a1, b1),
)

print(result)
0