結果

問題 No.4 おもりと天秤
ユーザー elsyelsy
提出日時 2023-11-17 15:16:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 68,864 KB
最終ジャッジ日時 2024-09-26 05:23:58
合計ジャッジ時間 2,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 46 ms
60,032 KB
testcase_03 AC 45 ms
59,776 KB
testcase_04 AC 51 ms
60,416 KB
testcase_05 AC 64 ms
65,280 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 60 ms
65,536 KB
testcase_08 AC 47 ms
59,776 KB
testcase_09 AC 70 ms
68,864 KB
testcase_10 AC 63 ms
65,792 KB
testcase_11 AC 47 ms
59,136 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 42 ms
58,240 KB
testcase_15 AC 36 ms
51,712 KB
testcase_16 AC 42 ms
58,752 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 59 ms
65,152 KB
testcase_19 AC 59 ms
65,152 KB
testcase_20 AC 58 ms
65,024 KB
testcase_21 AC 59 ms
64,768 KB
testcase_22 AC 58 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [0] + list(map(int,input().split()))
w = sum(A)
dp = [[False for _ in range(w + 1)] for _ in range(n + 1)]
dp[0][0] = True
for i in range(1,n + 1):
	for j in range(1,w + 1):
		if j - A[i] >= 0:
			dp[i][j] = dp[i - 1][j - A[i]] or dp[i - 1][j]
		else:
			dp[i][j] = dp[i - 1][j]
if w % 2 == 1:
	print("impossible")
elif dp[n][w//2]:
	print("possible")
else:
	print("impossible")
0