結果

問題 No.4 おもりと天秤
ユーザー あかりきあかりき
提出日時 2021-02-09 11:28:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-07-06 16:31:09
合計ジャッジ時間 2,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,352 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 37 ms
59,392 KB
testcase_03 AC 36 ms
59,136 KB
testcase_04 AC 37 ms
59,520 KB
testcase_05 AC 44 ms
63,140 KB
testcase_06 AC 33 ms
51,968 KB
testcase_07 AC 44 ms
63,360 KB
testcase_08 AC 33 ms
51,968 KB
testcase_09 AC 50 ms
65,152 KB
testcase_10 AC 46 ms
63,744 KB
testcase_11 AC 37 ms
58,880 KB
testcase_12 AC 32 ms
52,096 KB
testcase_13 AC 32 ms
51,968 KB
testcase_14 AC 32 ms
51,712 KB
testcase_15 AC 32 ms
51,968 KB
testcase_16 AC 36 ms
58,624 KB
testcase_17 AC 31 ms
51,584 KB
testcase_18 AC 44 ms
63,104 KB
testcase_19 AC 44 ms
62,848 KB
testcase_20 AC 46 ms
62,848 KB
testcase_21 AC 43 ms
62,848 KB
testcase_22 AC 44 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
w=list(map(int,input().split()))
s=sum(w)
if s%2!=0:
  print('impossible')
  exit()
x=s//2
dp=[[0]*(x+1) for i in range(n+1)]
dp[0][0]=1
for i in range(n):
  for j in range(x+1):
    dp[i+1][j]=dp[i][j]|dp[i+1][j]
    if j+w[i]<=x:
      dp[i+1][j+w[i]]=dp[i][j]|dp[i+1][j+w[i]]
if dp[-1][-1]==1:
  print('possible')
else:
  print('impossible')
0