結果

問題 No.4 おもりと天秤
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-20 13:53:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 67,268 KB
最終ジャッジ日時 2024-10-20 13:53:42
合計ジャッジ時間 2,392 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,708 KB
testcase_01 AC 37 ms
52,792 KB
testcase_02 AC 45 ms
59,808 KB
testcase_03 AC 42 ms
59,360 KB
testcase_04 AC 43 ms
60,248 KB
testcase_05 AC 47 ms
64,592 KB
testcase_06 AC 38 ms
52,700 KB
testcase_07 AC 48 ms
64,844 KB
testcase_08 AC 38 ms
52,756 KB
testcase_09 AC 53 ms
67,268 KB
testcase_10 AC 49 ms
65,020 KB
testcase_11 AC 47 ms
59,772 KB
testcase_12 AC 40 ms
52,388 KB
testcase_13 AC 37 ms
52,960 KB
testcase_14 AC 38 ms
53,928 KB
testcase_15 AC 38 ms
52,216 KB
testcase_16 AC 42 ms
58,880 KB
testcase_17 AC 37 ms
52,272 KB
testcase_18 AC 47 ms
66,552 KB
testcase_19 AC 47 ms
65,748 KB
testcase_20 AC 48 ms
64,964 KB
testcase_21 AC 48 ms
65,088 KB
testcase_22 AC 48 ms
64,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
w=list(map(int,input().split()))
W=sum(w)
if W%2:
  print("impossible")
  exit()
q=[0]*(W//2+1)
q[0]=1
for v in w:
  for i in reversed(range(W//2)):
    if i+v<=W//2:
      q[i+v]|=q[i]
print(["impossible","possible"][q[W//2]])
0