結果

問題 No.4 おもりと天秤
ユーザー shin
提出日時 2022-10-15 16:13:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-26 19:57:34
合計ジャッジ時間 2,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

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

sum = 0
for i in W:
  sum += i

if sum % 2:   #0以外はTrue
  print("impossible")
else:
  bit_dp = 1
  for i in W:
    bit_dp = bit_dp | bit_dp << i
  if bin(bit_dp)[sum // 2]:
    print("possible")
  else:
    print("impossible")
0