結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 MizarMizar
提出日時 2023-06-29 18:34:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 639 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,356 KB
最終ジャッジ日時 2024-10-06 01:30:25
合計ジャッジ時間 28,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 441 ms
43,972 KB
testcase_01 AC 462 ms
43,592 KB
testcase_02 AC 444 ms
43,720 KB
testcase_03 AC 444 ms
43,844 KB
testcase_04 AC 454 ms
44,092 KB
testcase_05 AC 516 ms
44,356 KB
testcase_06 AC 450 ms
43,716 KB
testcase_07 AC 449 ms
43,716 KB
testcase_08 AC 460 ms
43,964 KB
testcase_09 AC 595 ms
43,980 KB
testcase_10 AC 447 ms
43,848 KB
testcase_11 AC 439 ms
43,584 KB
testcase_12 AC 444 ms
44,100 KB
testcase_13 AC 444 ms
44,100 KB
testcase_14 AC 450 ms
43,720 KB
testcase_15 AC 443 ms
43,696 KB
testcase_16 AC 466 ms
44,228 KB
testcase_17 AC 462 ms
43,972 KB
testcase_18 AC 460 ms
44,096 KB
testcase_19 AC 445 ms
43,816 KB
testcase_20 AC 448 ms
43,852 KB
testcase_21 AC 436 ms
43,976 KB
testcase_22 AC 442 ms
43,716 KB
testcase_23 AC 451 ms
43,716 KB
testcase_24 AC 520 ms
44,100 KB
testcase_25 AC 529 ms
43,972 KB
testcase_26 AC 522 ms
43,816 KB
testcase_27 AC 521 ms
43,852 KB
testcase_28 AC 513 ms
43,728 KB
testcase_29 AC 574 ms
43,976 KB
testcase_30 AC 561 ms
44,100 KB
testcase_31 AC 575 ms
43,724 KB
testcase_32 AC 572 ms
44,100 KB
testcase_33 AC 563 ms
43,976 KB
testcase_34 AC 639 ms
43,712 KB
testcase_35 AC 633 ms
43,980 KB
testcase_36 AC 617 ms
43,720 KB
testcase_37 AC 633 ms
44,100 KB
testcase_38 AC 618 ms
43,844 KB
testcase_39 AC 525 ms
44,100 KB
testcase_40 AC 516 ms
43,840 KB
testcase_41 AC 512 ms
44,100 KB
testcase_42 AC 514 ms
43,760 KB
testcase_43 AC 516 ms
43,592 KB
testcase_44 AC 504 ms
43,832 KB
testcase_45 AC 527 ms
43,720 KB
testcase_46 AC 481 ms
43,848 KB
testcase_47 AC 482 ms
44,100 KB
testcase_48 AC 511 ms
43,588 KB
testcase_49 AC 633 ms
44,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def co_solve(n, a0, b0, a1, b1, a2, b2):
	r = 0
	for i in range(min(a0, n // a1 + 1)):
		d = n - i * a1
		jmax = min(a0, d // a2 + 1)
		j = np.arange(0, jmax, dtype=np.uint64)
		t = ((d - j * a2) // a0) * b0 + i * b1 + j * b2
		r = max(r, np.amax(t))
	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