結果

問題 No.4 おもりと天秤
ユーザー tobusakanatobusakana
提出日時 2020-11-29 19:01:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 61,876 KB
最終ジャッジ日時 2024-09-13 02:04:01
合計ジャッジ時間 2,125 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,132 KB
testcase_01 AC 40 ms
51,940 KB
testcase_02 AC 41 ms
58,968 KB
testcase_03 AC 42 ms
58,636 KB
testcase_04 AC 45 ms
59,892 KB
testcase_05 AC 49 ms
61,876 KB
testcase_06 AC 39 ms
53,580 KB
testcase_07 AC 49 ms
60,860 KB
testcase_08 AC 37 ms
52,276 KB
testcase_09 AC 45 ms
59,344 KB
testcase_10 AC 47 ms
60,948 KB
testcase_11 AC 41 ms
57,780 KB
testcase_12 AC 37 ms
53,228 KB
testcase_13 AC 38 ms
52,516 KB
testcase_14 AC 37 ms
52,688 KB
testcase_15 AC 37 ms
53,152 KB
testcase_16 AC 40 ms
58,064 KB
testcase_17 AC 37 ms
52,072 KB
testcase_18 AC 46 ms
60,440 KB
testcase_19 AC 48 ms
61,300 KB
testcase_20 AC 47 ms
60,720 KB
testcase_21 AC 48 ms
61,152 KB
testcase_22 AC 48 ms
60,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

# 総和//2を作れるかを判定

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

all = sum(W)
if all % 2 == 1:
  print("impossible")
  exit(0)
  
A = all // 2
dp = [False] * (A + 1)
dp[0] = True

for i in range(len(W)):
  for j in range(len(dp) - 1, -1, -1):
    if not dp[j]:
      continue
    if j + W[i] <= A:
      dp[j + W[i]] = True

if dp[A]:
  print("possible")
else:
  print("impossible")
0