結果

問題 No.4 おもりと天秤
コンテスト
ユーザー calei
提出日時 2019-12-29 10:26:18
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 81 ms / 5,000 ms
+ 278µs
コード長 358 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 56 ms
コンパイル使用メモリ 14,976 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2026-09-17 03:02:26
合計ジャッジ時間 3,006 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

# 2019/12/29

n=int(input())
w=list(map(int,input().split()))
w_sum=sum(w)
half=w_sum//2

if half*2!=w_sum:
    print('impossible')
    exit()

dp=[0]*(w_sum+1)
dp[0]=1

for i in range(len(w)):
    for j in reversed(range(w[i],w_sum+1)):
        if dp[j-w[i]]:
            dp[j]=1
    if dp[half]:break

if dp[half]:print('possible')
else:print('impossible')
0