結果

問題 No.4 おもりと天秤
ユーザー asumo0729asumo0729
提出日時 2020-12-16 17:03:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 590 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 60,800 KB
最終ジャッジ日時 2024-09-20 05:10:45
合計ジャッジ時間 2,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 45 ms
58,880 KB
testcase_03 AC 40 ms
58,624 KB
testcase_04 AC 41 ms
59,648 KB
testcase_05 AC 47 ms
60,672 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 46 ms
60,800 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 44 ms
59,392 KB
testcase_10 AC 49 ms
60,544 KB
testcase_11 AC 38 ms
57,984 KB
testcase_12 AC 35 ms
51,968 KB
testcase_13 AC 35 ms
52,096 KB
testcase_14 AC 34 ms
52,224 KB
testcase_15 AC 35 ms
52,480 KB
testcase_16 AC 37 ms
57,600 KB
testcase_17 AC 35 ms
51,840 KB
testcase_18 AC 43 ms
60,020 KB
testcase_19 AC 44 ms
60,544 KB
testcase_20 AC 46 ms
60,544 KB
testcase_21 AC 43 ms
60,672 KB
testcase_22 AC 44 ms
60,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
stdin=sys.stdin

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
tp=lambda:tuple(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
yp=lambda:print('Yes')
np=lambda:print('No')

n=ip()
w=lp()

s=sum(w)
if s%2==1:
    print('impossible')
else:
    half=s//2
    dp=[-1 for _ in range(half+1)]
    dp[0]=0
    for now in w:
        for i in range(half,-1,-1):
            if i-now>=0 and dp[i-now]!=-1:
                dp[i]=0
    if dp[half]==-1:
        print('impossible')
    else:
        print('possible')



0