結果

問題 No.2317 Expression Menu
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 12:18:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 83,168 KB
最終ジャッジ日時 2024-08-31 12:19:07
合計ジャッジ時間 21,092 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,832 KB
testcase_01 AC 38 ms
52,072 KB
testcase_02 AC 82 ms
76,632 KB
testcase_03 AC 540 ms
79,136 KB
testcase_04 AC 568 ms
78,744 KB
testcase_05 AC 564 ms
79,956 KB
testcase_06 AC 525 ms
79,004 KB
testcase_07 AC 580 ms
78,996 KB
testcase_08 AC 528 ms
78,608 KB
testcase_09 AC 571 ms
79,452 KB
testcase_10 AC 560 ms
79,316 KB
testcase_11 AC 587 ms
80,020 KB
testcase_12 AC 590 ms
79,292 KB
testcase_13 AC 548 ms
79,220 KB
testcase_14 AC 619 ms
79,764 KB
testcase_15 AC 530 ms
78,860 KB
testcase_16 AC 564 ms
79,756 KB
testcase_17 AC 598 ms
80,164 KB
testcase_18 AC 521 ms
79,168 KB
testcase_19 AC 591 ms
80,076 KB
testcase_20 AC 614 ms
80,524 KB
testcase_21 AC 519 ms
79,204 KB
testcase_22 AC 554 ms
79,024 KB
testcase_23 AC 662 ms
82,548 KB
testcase_24 AC 656 ms
82,096 KB
testcase_25 AC 670 ms
81,360 KB
testcase_26 AC 649 ms
81,868 KB
testcase_27 AC 609 ms
81,712 KB
testcase_28 AC 660 ms
81,868 KB
testcase_29 AC 673 ms
83,168 KB
testcase_30 AC 664 ms
82,516 KB
testcase_31 AC 618 ms
82,180 KB
testcase_32 AC 653 ms
82,688 KB
testcase_33 AC 37 ms
52,264 KB
testcase_34 AC 36 ms
53,104 KB
testcase_35 AC 45 ms
62,880 KB
testcase_36 AC 37 ms
53,512 KB
testcase_37 AC 36 ms
53,620 KB
testcase_38 AC 396 ms
77,120 KB
testcase_39 AC 427 ms
77,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,X,Y=map(int,input().split())
INF=10**20
q=[[-INF]*(Y+1) for i in range(X+1)]
q[0][0]=0
for _ in range(n):
  a,b,c=map(int,input().split())
  for i in reversed(range(X+1)):
    for j in reversed(range(Y+1)):
      if q[i][j]>-INF:
        if i+a<=X and j+b<=Y:
          q[i+a][j+b]=max(q[i+a][j+b],q[i][j]+c)
print(max(max(q[i]) for i in range(X+1)))
0