結果

問題 No.2317 Expression Menu
ユーザー kyskys
提出日時 2023-05-26 21:28:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,524 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 289,732 KB
最終ジャッジ日時 2024-06-07 05:34:27
合計ジャッジ時間 40,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 148 ms
90,752 KB
testcase_03 AC 1,273 ms
289,024 KB
testcase_04 AC 1,415 ms
289,568 KB
testcase_05 AC 1,413 ms
289,620 KB
testcase_06 AC 1,296 ms
289,464 KB
testcase_07 AC 1,312 ms
289,468 KB
testcase_08 AC 1,472 ms
289,280 KB
testcase_09 AC 1,273 ms
289,444 KB
testcase_10 AC 1,227 ms
289,704 KB
testcase_11 AC 1,502 ms
289,400 KB
testcase_12 AC 1,505 ms
289,664 KB
testcase_13 AC 1,297 ms
288,896 KB
testcase_14 AC 1,389 ms
289,280 KB
testcase_15 AC 1,264 ms
289,432 KB
testcase_16 AC 1,419 ms
289,664 KB
testcase_17 AC 1,524 ms
289,408 KB
testcase_18 AC 1,222 ms
289,408 KB
testcase_19 AC 1,421 ms
289,536 KB
testcase_20 AC 1,486 ms
288,896 KB
testcase_21 AC 1,417 ms
289,152 KB
testcase_22 AC 1,408 ms
289,536 KB
testcase_23 AC 1,003 ms
288,896 KB
testcase_24 AC 971 ms
289,732 KB
testcase_25 AC 974 ms
289,040 KB
testcase_26 AC 971 ms
288,896 KB
testcase_27 AC 972 ms
289,600 KB
testcase_28 AC 978 ms
289,024 KB
testcase_29 AC 973 ms
288,768 KB
testcase_30 AC 979 ms
289,280 KB
testcase_31 AC 970 ms
289,276 KB
testcase_32 AC 967 ms
289,280 KB
testcase_33 AC 37 ms
52,736 KB
testcase_34 AC 37 ms
51,968 KB
testcase_35 AC 46 ms
62,976 KB
testcase_36 AC 39 ms
57,088 KB
testcase_37 AC 40 ms
57,856 KB
testcase_38 AC 607 ms
286,464 KB
testcase_39 AC 641 ms
289,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from sys import stdin, setrecursionlimit
    # setrecursionlimit(1000000)
    input = stdin.readline
    def iinput(): return int(input())
    def sinput(): return input().rstrip()
    def i0input(): return int(input()) - 1
    def linput(): return list(input().split())
    def liinput(): return list(map(int, input().split()))
    def miinput(): return map(int, input().split())
    def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
    def mi0input(): return map(lambda x: int(x) - 1, input().split())
    INF = 1000000000000000000
    MOD = 1000000007

    N, X, Y = miinput()
    dp = [0] * ((N + 1) * (X + 1) * (Y + 1))

    def index(i, x, y):
        return i * (X + 1) * (Y + 1) + x * (Y + 1) + y

    for i in range(N):
        a, b, c = miinput()
        for x in range(X+1):
            for y in range(Y+1):
                dp[index(i+1, x, y)] = max(dp[index(i+1, x, y)], dp[index(i, x, y)])
                if x + a <= X and y + b <= Y:
                    dp[index(i+1, x+a, y+b)] = max(dp[index(i+1, x+a, y+b)], dp[index(i, x, y)] + c)
    
    print(dp[index(N, X, Y)])

main()
0