結果

問題 No.4 おもりと天秤
ユーザー konchanksu
提出日時 2020-04-27 15:56:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 380 ms / 5,000 ms
コード長 423 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-11-21 20:10:10
合計ジャッジ時間 4,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if full % 2 == 1:
    print('impossible')
    exit()

dp = [[False for i in range(0, full * 2 + 1)] for j in range(N + 1)]
dp[0][full] = True


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