結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,560 KB
testcase_01 AC 35 ms
53,268 KB
testcase_02 AC 43 ms
61,488 KB
testcase_03 AC 41 ms
59,712 KB
testcase_04 AC 46 ms
61,552 KB
testcase_05 AC 57 ms
66,584 KB
testcase_06 AC 36 ms
52,620 KB
testcase_07 AC 58 ms
65,476 KB
testcase_08 AC 34 ms
53,096 KB
testcase_09 AC 56 ms
67,208 KB
testcase_10 AC 71 ms
66,000 KB
testcase_11 AC 40 ms
58,628 KB
testcase_12 AC 36 ms
52,232 KB
testcase_13 AC 34 ms
52,864 KB
testcase_14 AC 35 ms
52,264 KB
testcase_15 AC 40 ms
53,036 KB
testcase_16 AC 40 ms
58,720 KB
testcase_17 AC 35 ms
52,548 KB
testcase_18 AC 54 ms
64,432 KB
testcase_19 AC 55 ms
66,740 KB
testcase_20 AC 55 ms
65,348 KB
testcase_21 AC 55 ms
65,480 KB
testcase_22 AC 55 ms
65,728 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 = [[False] * (half + 1) 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