結果

問題 No.4 おもりと天秤
ユーザー いまり💣🍠いまり💣🍠
提出日時 2024-06-07 20:57:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 82,124 KB
最終ジャッジ日時 2024-06-07 20:57:12
合計ジャッジ時間 2,619 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,804 KB
testcase_01 AC 35 ms
52,348 KB
testcase_02 AC 41 ms
59,384 KB
testcase_03 AC 41 ms
60,912 KB
testcase_04 AC 45 ms
62,872 KB
testcase_05 AC 74 ms
81,248 KB
testcase_06 AC 34 ms
51,952 KB
testcase_07 AC 76 ms
81,252 KB
testcase_08 AC 37 ms
53,224 KB
testcase_09 AC 78 ms
81,912 KB
testcase_10 AC 81 ms
82,124 KB
testcase_11 AC 41 ms
59,548 KB
testcase_12 AC 38 ms
52,004 KB
testcase_13 AC 34 ms
53,844 KB
testcase_14 AC 35 ms
53,448 KB
testcase_15 AC 36 ms
52,864 KB
testcase_16 AC 42 ms
58,860 KB
testcase_17 AC 36 ms
52,336 KB
testcase_18 AC 71 ms
81,136 KB
testcase_19 AC 74 ms
80,868 KB
testcase_20 AC 74 ms
80,852 KB
testcase_21 AC 70 ms
80,972 KB
testcase_22 AC 73 ms
80,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
W = list(map(int, input().split()))

weight_sum = sum(W)
if weight_sum % 2 == 1:
    print('impossible')
    exit()
half = sum(W) // 2

dp = [[True] + [False] * (half) for _ in range(N)]
dp[0][0] = True

for i in range(N - 1):
    for j in range(half + 1):
        dp[i + 1][j] |= dp[i][j]
        if j - W[i] >= 0:
            dp[i + 1][j] += dp[i][j - W[i]]
if dp[-1][half] >= 1:
    print('possible')
else:
    print('impossible')
0