結果

問題 No.2840 RGB Plates
ユーザー PNJPNJ
提出日時 2024-08-09 23:14:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 508 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 72,976 KB
最終ジャッジ日時 2024-08-09 23:14:12
合計ジャッジ時間 3,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 43 ms
59,776 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 42 ms
58,880 KB
testcase_06 AC 46 ms
59,904 KB
testcase_07 AC 46 ms
60,288 KB
testcase_08 AC 47 ms
60,160 KB
testcase_09 RE -
testcase_10 AC 41 ms
58,240 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
A.sort()
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 += a

S = sum(A)
R = S - 2 * ans
if R <= 0:
  R = -1
print(R)
0