結果

問題 No.2317 Expression Menu
ユーザー 👑 p-adicp-adic
提出日時 2023-06-06 19:33:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 73,564 KB
最終ジャッジ日時 2024-06-09 06:18:13
合計ジャッジ時間 8,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,192 KB
testcase_01 AC 40 ms
52,684 KB
testcase_02 AC 57 ms
63,736 KB
testcase_03 AC 146 ms
70,448 KB
testcase_04 AC 142 ms
68,432 KB
testcase_05 AC 144 ms
70,356 KB
testcase_06 AC 140 ms
70,696 KB
testcase_07 AC 110 ms
70,236 KB
testcase_08 AC 151 ms
70,924 KB
testcase_09 AC 115 ms
70,188 KB
testcase_10 AC 145 ms
69,960 KB
testcase_11 AC 154 ms
72,028 KB
testcase_12 AC 124 ms
73,564 KB
testcase_13 AC 140 ms
69,440 KB
testcase_14 AC 152 ms
70,808 KB
testcase_15 AC 114 ms
70,468 KB
testcase_16 AC 142 ms
68,452 KB
testcase_17 AC 145 ms
70,716 KB
testcase_18 AC 187 ms
68,884 KB
testcase_19 AC 153 ms
69,848 KB
testcase_20 AC 149 ms
71,668 KB
testcase_21 AC 141 ms
70,308 KB
testcase_22 AC 114 ms
70,460 KB
testcase_23 AC 368 ms
72,312 KB
testcase_24 AC 364 ms
71,988 KB
testcase_25 AC 367 ms
72,852 KB
testcase_26 AC 364 ms
72,276 KB
testcase_27 AC 369 ms
71,516 KB
testcase_28 AC 366 ms
73,216 KB
testcase_29 AC 363 ms
72,676 KB
testcase_30 AC 363 ms
73,212 KB
testcase_31 AC 359 ms
72,080 KB
testcase_32 AC 358 ms
72,876 KB
testcase_33 AC 38 ms
52,624 KB
testcase_34 AC 38 ms
52,208 KB
testcase_35 AC 41 ms
58,788 KB
testcase_36 AC 40 ms
52,524 KB
testcase_37 AC 38 ms
53,356 KB
testcase_38 AC 344 ms
72,296 KB
testcase_39 AC 297 ms
71,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
def J():
	return map(int,input().split())
N,X,Y=J()
W=Y+1
d=[0]*W*(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)*W+y+B]=max(d[(x+A)*W+y+B],d[x*W+y]+C)
print(max(d))
0