結果

問題 No.4 おもりと天秤
ユーザー トミートミー
提出日時 2024-03-27 02:21:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 67,544 KB
最終ジャッジ日時 2024-09-30 14:29:46
合計ジャッジ時間 1,681 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,324 KB
testcase_01 AC 35 ms
53,532 KB
testcase_02 AC 37 ms
58,912 KB
testcase_03 AC 39 ms
60,228 KB
testcase_04 AC 38 ms
60,056 KB
testcase_05 AC 47 ms
65,700 KB
testcase_06 AC 35 ms
52,796 KB
testcase_07 AC 46 ms
64,416 KB
testcase_08 AC 34 ms
52,084 KB
testcase_09 AC 42 ms
67,544 KB
testcase_10 AC 44 ms
65,832 KB
testcase_11 AC 36 ms
58,764 KB
testcase_12 AC 33 ms
52,800 KB
testcase_13 AC 32 ms
52,828 KB
testcase_14 AC 35 ms
57,856 KB
testcase_15 AC 32 ms
53,264 KB
testcase_16 AC 36 ms
58,056 KB
testcase_17 AC 33 ms
52,960 KB
testcase_18 AC 42 ms
63,088 KB
testcase_19 AC 43 ms
63,532 KB
testcase_20 AC 43 ms
64,976 KB
testcase_21 AC 43 ms
63,656 KB
testcase_22 AC 44 ms
63,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
w=list(map(int,input().split()))
s=sum(w)
if s%2!=0:
    print("impossible")
    exit()
dp=[[0]*s for i in range(n+1)]
dp[0][0]=1
for i in range(n):
    for j in range(s):
        if dp[i][j]==1:
            dp[i+1][j]=1
            if j+w[i]<s:
                dp[i+1][j+w[i]]=1

# print(dp)
if dp[n-1][int(s/2)]==1:
    print("possible")
else:
    print("impossible")
0