結果
問題 | No.2317 Expression Menu |
ユーザー | miho-4 |
提出日時 | 2023-05-26 21:59:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 406 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 82,408 KB |
実行使用メモリ | 157,908 KB |
最終ジャッジ日時 | 2024-06-07 06:49:03 |
合計ジャッジ時間 | 29,275 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
59,512 KB |
testcase_01 | AC | 42 ms
51,840 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | WA | - |
testcase_04 | AC | 796 ms
89,632 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
n,x,y=map(int,input().split()) L=[list(map(int,input().split())) for _ in range(n)] d=dict() d[(0,0)]=0 S={(0,0)} ans=0 for a,b,c in L: nx={(0,0)} for A,B in S: v=d[(A,B)] if A+a<=x and B+b<=y: ans=max(ans,v+c) nx.add((A+a,B+b)) if (A+a,B+b) not in d: d[(A+a,B+b)]=v+c else: if d[(A+a,B+b)]<v+c: d[(A+a,B+b)]=v+c S|=nx # print(S) print(ans)