結果

問題 No.4 おもりと天秤
ユーザー tookunn_1213tookunn_1213
提出日時 2015-08-18 00:10:57
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 10:06:19
合計ジャッジ時間 2,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
6,816 KB
testcase_01 AC 18 ms
6,944 KB
testcase_02 AC 27 ms
6,944 KB
testcase_03 AC 25 ms
6,940 KB
testcase_04 AC 32 ms
6,944 KB
testcase_05 AC 176 ms
6,944 KB
testcase_06 AC 11 ms
6,944 KB
testcase_07 AC 168 ms
6,940 KB
testcase_08 AC 170 ms
6,940 KB
testcase_09 AC 83 ms
6,944 KB
testcase_10 AC 173 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 12 ms
6,944 KB
testcase_14 WA -
testcase_15 AC 13 ms
6,944 KB
testcase_16 AC 22 ms
6,944 KB
testcase_17 AC 19 ms
6,940 KB
testcase_18 AC 129 ms
6,940 KB
testcase_19 AC 168 ms
6,944 KB
testcase_20 AC 178 ms
6,944 KB
testcase_21 AC 168 ms
6,944 KB
testcase_22 AC 168 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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