結果

問題 No.4 おもりと天秤
ユーザー gahougahou
提出日時 2016-11-01 17:37:30
言語 Python2
(2.7.18)
結果
AC  
実行時間 502 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-06-26 10:03:46
合計ジャッジ時間 6,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
6,656 KB
testcase_01 AC 36 ms
6,784 KB
testcase_02 AC 86 ms
7,552 KB
testcase_03 AC 62 ms
7,168 KB
testcase_04 AC 86 ms
7,424 KB
testcase_05 AC 451 ms
14,080 KB
testcase_06 AC 20 ms
6,656 KB
testcase_07 AC 449 ms
14,208 KB
testcase_08 AC 498 ms
13,952 KB
testcase_09 AC 502 ms
14,208 KB
testcase_10 AC 442 ms
14,208 KB
testcase_11 AC 46 ms
6,912 KB
testcase_12 AC 26 ms
6,656 KB
testcase_13 AC 26 ms
6,656 KB
testcase_14 AC 30 ms
6,528 KB
testcase_15 AC 25 ms
6,656 KB
testcase_16 AC 51 ms
7,040 KB
testcase_17 AC 45 ms
6,912 KB
testcase_18 AC 475 ms
14,208 KB
testcase_19 AC 459 ms
14,208 KB
testcase_20 AC 457 ms
14,080 KB
testcase_21 AC 458 ms
14,208 KB
testcase_22 AC 451 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(raw_input())
w=map(int,raw_input().split())
dp=[[False]*(10**4+1) for _ in xrange(n+1)]
dp[0][0] = True
su=0
for i in xrange(1,n+1):
  su+=w[i-1]
  for j in xrange(10**4+1):
    if j-w[i-1]<0:
      dp[i][j] = dp[i-1][j]
    else:
      dp[i][j] = dp[i-1][j] or dp[i-1][j-w[i-1]]
if su%2==1: print "impossible"
else:
  if dp[n][su/2]: print "possible"
  else: print "impossible"
0