結果

問題 No.4 おもりと天秤
ユーザー shobonvipshobonvip
提出日時 2022-06-11 19:23:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 59,780 KB
最終ジャッジ日時 2023-10-22 04:56:15
合計ジャッジ時間 2,093 ms
ジャッジサーバーID
(参考情報)
judge10 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,532 KB
testcase_01 AC 38 ms
53,532 KB
testcase_02 AC 43 ms
59,756 KB
testcase_03 AC 43 ms
59,756 KB
testcase_04 AC 43 ms
59,756 KB
testcase_05 AC 46 ms
59,780 KB
testcase_06 AC 38 ms
53,532 KB
testcase_07 AC 45 ms
59,780 KB
testcase_08 AC 38 ms
53,532 KB
testcase_09 AC 45 ms
59,756 KB
testcase_10 AC 46 ms
59,780 KB
testcase_11 AC 41 ms
59,756 KB
testcase_12 AC 37 ms
53,532 KB
testcase_13 AC 38 ms
53,532 KB
testcase_14 AC 37 ms
53,532 KB
testcase_15 AC 37 ms
53,532 KB
testcase_16 AC 42 ms
59,756 KB
testcase_17 AC 38 ms
53,532 KB
testcase_18 AC 46 ms
59,780 KB
testcase_19 AC 46 ms
59,780 KB
testcase_20 AC 45 ms
59,780 KB
testcase_21 AC 46 ms
59,780 KB
testcase_22 AC 46 ms
59,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
w = list(map(int,input().split()))
if sum(w) % 2 == 1:
	print("impossible")
	exit()

W = sum(w) // 2

dp = [0] * (W+1)
dp[0] = 1
for i in w:
	for j in range(W,-1,-1):
		if j + i <= W:
			dp[j+i] |= dp[j]

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