結果
| 問題 | 
                            No.2317 Expression Menu
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2023-02-19 01:46:59 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 1,437 ms / 2,000 ms | 
| コード長 | 1,256 bytes | 
| コンパイル時間 | 183 ms | 
| コンパイル使用メモリ | 82,176 KB | 
| 実行使用メモリ | 92,672 KB | 
| 最終ジャッジ日時 | 2024-09-18 09:39:13 | 
| 合計ジャッジ時間 | 35,484 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 37 | 
ソースコード
import sys
from collections import deque, Counter
from math import gcd, log10, pi, sqrt, ceil
from bisect import bisect, bisect_left, bisect_right, insort
from typing import Iterable, TypeVar, Union, Tuple, Iterator, List
import copy
import heapq
import itertools
import math
import random
from fractions import Fraction
from functools import lru_cache, partial, cmp_to_key
import operator
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
mod = 998244353
INF = 1 << 61
DIFF = 10 ** -9
DX = [1, 0, -1, 0, 1, 1, -1, -1]
DY = [0, 1, 0, -1, 1, -1, 1, -1]
def read_values(): return map(int, input().split())
def read_index(): return map(lambda x: int(x) - 1, input().split())
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]
def main():
    N, X, Y = read_values()
    L = read_lists(N)
    dp = [[0] * (Y + 1) for _ in range(X + 1)]
    for a, b, c in L:
        for x in reversed(range(X + 1)):
            for y in reversed(range(Y + 1)):
                if x + a <= X and y + b <= Y:
                    dp[x + a][y + b] = max(dp[x + a][y + b], dp[x][y] + c)
                dp[x][y] = max(dp[x][y], dp[x][y])
    
    print(max(max(v) for v in dp))
if __name__ == "__main__":
    main()