結果

問題 No.2840 RGB Plates
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 22:56:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,040 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 551,340 KB
最終ジャッジ日時 2024-08-09 22:57:16
合計ジャッジ時間 34,694 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
81,084 KB
testcase_01 AC 104 ms
80,640 KB
testcase_02 AC 136 ms
82,172 KB
testcase_03 AC 106 ms
80,612 KB
testcase_04 TLE -
testcase_05 AC 126 ms
82,432 KB
testcase_06 WA -
testcase_07 AC 131 ms
82,516 KB
testcase_08 AC 134 ms
82,708 KB
testcase_09 MLE -
testcase_10 AC 121 ms
82,280 KB
testcase_11 AC 1,674 ms
462,592 KB
testcase_12 AC 1,124 ms
321,924 KB
testcase_13 AC 1,581 ms
429,392 KB
testcase_14 AC 1,401 ms
395,712 KB
testcase_15 AC 1,326 ms
362,848 KB
testcase_16 AC 1,535 ms
423,248 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 373 ms
141,716 KB
testcase_23 AC 335 ms
131,132 KB
testcase_24 AC 438 ms
153,016 KB
testcase_25 AC 1,371 ms
370,304 KB
testcase_26 AC 1,015 ms
290,560 KB
testcase_27 AC 1,093 ms
296,924 KB
testcase_28 AC 1,317 ms
357,828 KB
testcase_29 MLE -
権限があれば一括ダウンロードができます

ソースコード

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] * 10001 for _ in range(n + 1)] for _ in range(2)]

dp[0][0][0] = 0
for i in range(n):
    for j in range(10001):
        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] <= 10000:
            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