結果
問題 | No.2840 RGB Plates |
ユーザー | PNJ |
提出日時 | 2024-08-09 23:15:44 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 521 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,260 KB |
実行使用メモリ | 73,220 KB |
最終ジャッジ日時 | 2024-08-09 23:15:50 |
合計ジャッジ時間 | 2,788 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,616 KB |
testcase_01 | AC | 37 ms
52,820 KB |
testcase_02 | AC | 44 ms
60,700 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 38 ms
58,652 KB |
testcase_06 | AC | 47 ms
62,008 KB |
testcase_07 | AC | 41 ms
61,948 KB |
testcase_08 | AC | 42 ms
60,864 KB |
testcase_09 | RE | - |
testcase_10 | AC | 37 ms
58,752 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
ソースコード
N = int(input()) A = list(map(int,input().split())) A.sort() SS = sum(A) S = 0 for i in range(min(24,N)): S += A[i] for i in range(N - 1): if A[i + 1] == A[i]: S = min(S,A[i]) break dp = [0 for s in range(S + 1)] dp[0] = 1 s = 0 inf = 1 << 61 ans = inf for a in A: for ss in range(s,-1,-1): if dp[ss] == 0: continue if ss + a > S: continue if dp[ss + a]: ans = min(ans,ss + a) else: dp[ss + a] = 1 s = min(SS,s + a) R = SS - 2 * ans if R <= 0: R = -1 print(R)