結果

問題 No.4 おもりと天秤
ユーザー ytftytft
提出日時 2022-11-02 14:29:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 379 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 69,412 KB
最終ジャッジ日時 2024-07-17 03:55:42
合計ジャッジ時間 2,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,340 KB
testcase_01 AC 40 ms
54,500 KB
testcase_02 AC 44 ms
60,472 KB
testcase_03 AC 45 ms
59,792 KB
testcase_04 AC 46 ms
60,224 KB
testcase_05 AC 51 ms
66,520 KB
testcase_06 AC 40 ms
55,164 KB
testcase_07 AC 51 ms
66,396 KB
testcase_08 AC 41 ms
53,972 KB
testcase_09 AC 54 ms
69,412 KB
testcase_10 AC 50 ms
66,300 KB
testcase_11 AC 43 ms
60,384 KB
testcase_12 AC 40 ms
54,792 KB
testcase_13 AC 40 ms
54,408 KB
testcase_14 AC 40 ms
54,208 KB
testcase_15 AC 41 ms
54,192 KB
testcase_16 AC 43 ms
60,328 KB
testcase_17 AC 40 ms
53,632 KB
testcase_18 AC 51 ms
67,008 KB
testcase_19 AC 51 ms
66,656 KB
testcase_20 AC 51 ms
64,896 KB
testcase_21 AC 50 ms
66,128 KB
testcase_22 AC 50 ms
65,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,copy
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
A=list(map(int,input().split()))
if sum(A)%2:
	print("impossible")
	sys.exit()
targ=sum(A)//2
dp=[[0 for j in range(targ+1)] for i in range(N+1)]
dp[0][0]=1
for i in range(N):
	dp[i+1]=copy.copy(dp[i])
	for j in range(targ+1-A[i]):
		dp[i+1][j+A[i]]|=dp[i][j]
print(["impossible","possible"][dp[N][targ]])
0