結果

問題 No.4 おもりと天秤
ユーザー ryusukeryusuke
提出日時 2022-02-20 18:53:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 72,040 KB
最終ジャッジ日時 2024-06-29 10:55:13
合計ジャッジ時間 2,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,776 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 57 ms
63,104 KB
testcase_03 AC 53 ms
62,592 KB
testcase_04 AC 57 ms
63,872 KB
testcase_05 AC 85 ms
71,552 KB
testcase_06 AC 46 ms
60,028 KB
testcase_07 AC 84 ms
72,040 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 77 ms
69,612 KB
testcase_10 AC 85 ms
71,552 KB
testcase_11 AC 50 ms
60,744 KB
testcase_12 AC 47 ms
59,904 KB
testcase_13 AC 47 ms
59,860 KB
testcase_14 AC 48 ms
60,160 KB
testcase_15 AC 47 ms
59,904 KB
testcase_16 AC 50 ms
60,932 KB
testcase_17 AC 48 ms
60,260 KB
testcase_18 AC 81 ms
70,136 KB
testcase_19 AC 87 ms
71,576 KB
testcase_20 AC 87 ms
71,128 KB
testcase_21 AC 83 ms
71,296 KB
testcase_22 AC 86 ms
71,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
w = list(map(int, input().split()))

if sum(w) % 2:
    print('impossible')
else:
    t = 10 ** 4 + 10
    dp = [[False] * t for _ in range(n + 1)]
    # dp[i][j] := i番目までの重りでjを作れるかどうか
    dp[0][0] = True
    for i in range(n):
        for j in range(t):
            if j - w[i] >= 0:
                dp[i + 1][j] |= dp[i][j - w[i]]
            dp[i + 1][j] |= dp[i][j]
    
    print('possible') if dp[-1][sum(w) // 2] else print('impossible')
0