結果

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

ソースコード

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 bit_dp & 1 << sum // 2:
    print("possible")
  else:
    print("impossible")
0