結果

問題 No.2317 Expression Menu
ユーザー 👑 p-adicp-adic
提出日時 2023-06-06 19:29:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 488 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 74,240 KB
最終ジャッジ日時 2024-06-09 06:17:03
合計ジャッジ時間 9,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 51 ms
64,640 KB
testcase_03 AC 148 ms
71,680 KB
testcase_04 AC 145 ms
69,888 KB
testcase_05 AC 149 ms
70,528 KB
testcase_06 AC 150 ms
71,040 KB
testcase_07 AC 114 ms
70,784 KB
testcase_08 AC 155 ms
71,680 KB
testcase_09 AC 121 ms
70,656 KB
testcase_10 AC 158 ms
71,424 KB
testcase_11 AC 162 ms
72,064 KB
testcase_12 AC 128 ms
74,240 KB
testcase_13 AC 145 ms
69,760 KB
testcase_14 AC 164 ms
70,400 KB
testcase_15 AC 118 ms
70,784 KB
testcase_16 AC 148 ms
69,248 KB
testcase_17 AC 147 ms
70,528 KB
testcase_18 AC 191 ms
69,376 KB
testcase_19 AC 160 ms
70,400 KB
testcase_20 AC 164 ms
71,168 KB
testcase_21 AC 144 ms
70,784 KB
testcase_22 AC 114 ms
71,552 KB
testcase_23 AC 427 ms
72,960 KB
testcase_24 AC 420 ms
73,216 KB
testcase_25 AC 416 ms
73,472 KB
testcase_26 AC 418 ms
72,960 KB
testcase_27 AC 419 ms
73,856 KB
testcase_28 AC 421 ms
73,856 KB
testcase_29 AC 415 ms
73,784 KB
testcase_30 AC 434 ms
73,216 KB
testcase_31 AC 488 ms
73,600 KB
testcase_32 AC 418 ms
73,088 KB
testcase_33 AC 31 ms
52,352 KB
testcase_34 AC 31 ms
51,712 KB
testcase_35 AC 37 ms
59,776 KB
testcase_36 AC 32 ms
52,224 KB
testcase_37 AC 33 ms
52,480 KB
testcase_38 AC 365 ms
72,832 KB
testcase_39 AC 344 ms
72,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
def J():
	return map(int,input().split())
N,X,Y=J()
d=[[0]*(Y+1) for x in R(X+1)]
for n in R(N):
	A,B,C=J()
	for x in R(X-A,-1,-1):
		for y in R(Y-B,-1,-1):d[x+A][y+B]=max(d[x+A][y+B],d[x][y]+C)
a=0
for x in R(X+1):
	for y in R(Y+1):a=max(a,d[x][y])
print(a)
0