結果

問題 No.4 おもりと天秤
ユーザー idkqh7
提出日時 2014-10-19 18:28:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-26 09:02:08
合計ジャッジ時間 2,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if sum(V) % 2:
    print("impossible")
else:
    total = int(sum(V) / 2)
    dp = [False] * (total+1)
    dp[0] = True

    for v in V:
        for t in reversed(range(v-1, total+1)):
            dp[t] |= dp[t - v]

    if dp[total]:
        print("possible")
    else:
        print("impossible")
0