結果

問題 No.2840 RGB Plates
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 22:57:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,037 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 410,496 KB
最終ジャッジ日時 2024-08-09 22:57:32
合計ジャッジ時間 25,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
80,768 KB
testcase_01 AC 109 ms
80,640 KB
testcase_02 AC 139 ms
81,664 KB
testcase_03 AC 120 ms
80,512 KB
testcase_04 AC 1,569 ms
410,496 KB
testcase_05 AC 145 ms
81,664 KB
testcase_06 WA -
testcase_07 AC 134 ms
81,792 KB
testcase_08 WA -
testcase_09 AC 1,323 ms
409,728 KB
testcase_10 AC 131 ms
81,792 KB
testcase_11 AC 1,202 ms
348,416 KB
testcase_12 AC 809 ms
248,600 KB
testcase_13 AC 1,135 ms
324,736 KB
testcase_14 AC 1,042 ms
301,440 KB
testcase_15 AC 872 ms
278,528 KB
testcase_16 AC 1,092 ms
320,896 KB
testcase_17 AC 1,574 ms
410,496 KB
testcase_18 AC 1,550 ms
410,496 KB
testcase_19 AC 1,565 ms
410,280 KB
testcase_20 AC 1,523 ms
410,240 KB
testcase_21 AC 1,554 ms
410,368 KB
testcase_22 AC 300 ms
123,264 KB
testcase_23 AC 276 ms
116,388 KB
testcase_24 AC 345 ms
131,068 KB
testcase_25 AC 992 ms
283,776 KB
testcase_26 AC 755 ms
227,592 KB
testcase_27 AC 788 ms
231,884 KB
testcase_28 AC 966 ms
275,072 KB
testcase_29 AC 1,486 ms
393,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
import logging
from logging import debug, error, info, warning
logging.basicConfig(level=logging.DEBUG)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n = ii()
a = li()
a.sort()
dp = [[[-inf] * 7001 for _ in range(n + 1)] for _ in range(2)]

dp[0][0][0] = 0
for i in range(n):
    for j in range(7001):
        dp[0][i + 1][j] = max(dp[0][i + 1][j], dp[0][i][j] + a[i])
        dp[1][i + 1][j] = max(dp[1][i + 1][j], dp[1][i][j] + a[i])
        dp[1][i + 1][abs(j - a[i])] = max(dp[1][i + 1][abs(j - a[i])], dp[1][i][j])
        dp[1][i + 1][abs(j - a[i])] = max(dp[1][i + 1][abs(j - a[i])], dp[0][i][j])
        if j + a[i] <= 7000:
            dp[1][i + 1][j + a[i]] = max(dp[1][i + 1][j + a[i]], dp[1][i][j])
            dp[1][i + 1][j + a[i]] = max(dp[1][i + 1][j + a[i]], dp[0][i][j])

print(-1 if dp[1][n][0] <= 0 else dp[1][n][0])
0