結果

問題 No.2317 Expression Menu
ユーザー yupoohyupooh
提出日時 2023-05-26 21:30:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-06-07 05:37:54
合計ジャッジ時間 15,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 70 ms
77,660 KB
testcase_03 AC 389 ms
90,752 KB
testcase_04 AC 379 ms
91,476 KB
testcase_05 AC 430 ms
90,880 KB
testcase_06 AC 376 ms
91,008 KB
testcase_07 AC 414 ms
91,008 KB
testcase_08 AC 372 ms
91,296 KB
testcase_09 AC 380 ms
90,880 KB
testcase_10 AC 419 ms
90,880 KB
testcase_11 AC 411 ms
91,260 KB
testcase_12 AC 427 ms
90,752 KB
testcase_13 AC 396 ms
91,312 KB
testcase_14 AC 454 ms
90,880 KB
testcase_15 AC 374 ms
90,880 KB
testcase_16 AC 428 ms
90,752 KB
testcase_17 AC 437 ms
90,644 KB
testcase_18 AC 379 ms
91,368 KB
testcase_19 AC 449 ms
91,136 KB
testcase_20 AC 447 ms
91,264 KB
testcase_21 AC 380 ms
91,008 KB
testcase_22 AC 366 ms
89,984 KB
testcase_23 AC 462 ms
91,264 KB
testcase_24 AC 430 ms
90,752 KB
testcase_25 AC 427 ms
91,520 KB
testcase_26 AC 423 ms
91,904 KB
testcase_27 AC 424 ms
91,776 KB
testcase_28 AC 437 ms
91,136 KB
testcase_29 AC 463 ms
91,008 KB
testcase_30 AC 537 ms
91,516 KB
testcase_31 AC 493 ms
91,264 KB
testcase_32 AC 476 ms
91,776 KB
testcase_33 AC 38 ms
51,840 KB
testcase_34 AC 38 ms
52,352 KB
testcase_35 AC 45 ms
61,184 KB
testcase_36 AC 37 ms
51,968 KB
testcase_37 AC 38 ms
52,608 KB
testcase_38 AC 230 ms
91,008 KB
testcase_39 AC 240 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n,x,y=map(int,input().split())
dp=[[-1]*(y+1) for _ in range(x+1)]
dp[0][0]=0
for _ in range(n):
  a,b,c=map(int,input().split())
  dp2=[[-1]*(y+1) for _ in range(x+1)]
  for i in range(x+1):
    for j in range(y+1):
      if dp[i][j]==-1:
        continue
      if i+a<=x and j+b<=y:
        dp2[i+a][j+b]=max(dp2[i+a][j+b],dp[i][j]+c)
      dp2[i][j]=max(dp2[i][j],dp[i][j])
  dp=dp2
ans=0
for i in range(x+1):
  for j in range(y+1):
    ans=max(ans,dp[i][j])
print(ans)
0