結果

問題 No.4 おもりと天秤
ユーザー bellangeldindonbellangeldindon
提出日時 2019-05-15 15:33:19
言語 Python2
(2.7.18)
結果
AC  
実行時間 248 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-09-14 01:55:37
合計ジャッジ時間 3,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 15 ms
6,944 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 17 ms
6,940 KB
testcase_05 AC 220 ms
10,880 KB
testcase_06 AC 11 ms
6,944 KB
testcase_07 AC 225 ms
11,008 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 248 ms
14,848 KB
testcase_10 AC 247 ms
11,648 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 11 ms
6,944 KB
testcase_13 AC 11 ms
6,940 KB
testcase_14 AC 11 ms
6,940 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 171 ms
10,624 KB
testcase_19 AC 200 ms
10,752 KB
testcase_20 AC 199 ms
10,496 KB
testcase_21 AC 189 ms
9,984 KB
testcase_22 AC 195 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
W = map(int, raw_input().split())
sum = 0
for i in range(0, N):
	sum += W[i]
if sum % 2 == 1: print 'impossible'
else:
	dp = []
	for i in range(0, N+1):
		lst = []
		for j in range(0, sum+1):
			lst.append(False)
		dp.append(lst)
	dp[0][0] = True
	for i in range(0, N):
		for j in range(0, sum+1):
			if dp[i][j]:
				dp[i+1][j] = True
				dp[i+1][j+W[i]] = True
	if dp[N][sum/2]: print 'possible'
	else: print 'impossible'
0