結果
問題 | No.2840 RGB Plates |
ユーザー | miztom |
提出日時 | 2024-08-09 22:54:27 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 350 bytes |
コンパイル時間 | 370 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 332,124 KB |
最終ジャッジ日時 | 2024-08-09 22:54:32 |
合計ジャッジ時間 | 4,408 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
59,008 KB |
testcase_01 | AC | 37 ms
53,376 KB |
testcase_02 | AC | 186 ms
80,580 KB |
testcase_03 | AC | 37 ms
53,632 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
from collections import* n=int(input()) d=defaultdict(lambda:-1<<60) d[0]=0 r=0 a=[*map(int,input().split())] s=sum(a) for i in a: s-=i p=defaultdict(lambda:-1<<60) r=max(d[i]+s,d[-i]+s,r) for j in d: p[j]=max(p[j],d[j]+i) p[j+i]=max(p[j+i],d[j]) p[j-i]=max(p[j-i],d[j]) d=p del p print(r if r else -1)