結果

問題 No.4 おもりと天秤
ユーザー qibqib
提出日時 2022-10-21 21:48:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 316 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 78,288 KB
最終ジャッジ日時 2024-07-01 06:24:14
合計ジャッジ時間 2,815 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,784 KB
testcase_01 AC 43 ms
54,308 KB
testcase_02 AC 50 ms
62,940 KB
testcase_03 AC 43 ms
55,044 KB
testcase_04 AC 54 ms
65,264 KB
testcase_05 AC 143 ms
77,804 KB
testcase_06 AC 43 ms
53,188 KB
testcase_07 AC 147 ms
78,244 KB
testcase_08 AC 56 ms
65,744 KB
testcase_09 AC 58 ms
64,868 KB
testcase_10 AC 148 ms
77,752 KB
testcase_11 AC 42 ms
55,160 KB
testcase_12 AC 42 ms
54,984 KB
testcase_13 AC 42 ms
55,036 KB
testcase_14 AC 43 ms
54,204 KB
testcase_15 AC 42 ms
53,552 KB
testcase_16 AC 42 ms
54,848 KB
testcase_17 AC 42 ms
53,736 KB
testcase_18 AC 117 ms
76,748 KB
testcase_19 AC 141 ms
77,756 KB
testcase_20 AC 138 ms
78,044 KB
testcase_21 AC 140 ms
78,288 KB
testcase_22 AC 143 ms
77,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

_ = input()
w = list(map(int, input().split()))

dp = defaultdict(int)
dp[w.pop()] += 1
for i in range(len(w)):
  ndp = defaultdict(int)
  for x, v in dp.items():
  	ndp[x + w[i]] += v
  	ndp[x - w[i]] += v
  dp = ndp

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