結果

問題 No.4 おもりと天秤
ユーザー soisusoisu
提出日時 2022-09-09 16:04:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 61,488 KB
最終ジャッジ日時 2024-05-04 05:54:53
合計ジャッジ時間 2,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,536 KB
testcase_01 AC 44 ms
59,380 KB
testcase_02 AC 50 ms
60,152 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 44 ms
60,372 KB
testcase_07 WA -
testcase_08 AC 104 ms
60,280 KB
testcase_09 AC 107 ms
61,488 KB
testcase_10 WA -
testcase_11 AC 45 ms
60,164 KB
testcase_12 AC 43 ms
59,500 KB
testcase_13 AC 41 ms
59,884 KB
testcase_14 AC 43 ms
59,420 KB
testcase_15 AC 42 ms
59,836 KB
testcase_16 WA -
testcase_17 AC 44 ms
59,368 KB
testcase_18 AC 109 ms
61,064 KB
testcase_19 AC 107 ms
60,464 KB
testcase_20 AC 111 ms
61,324 KB
testcase_21 AC 109 ms
61,124 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
inf=float('inf')

N=int(input())
W=list(map(int,input().split()))
sm=sum(W)

M=101010
dp=[False]*(M+1)
dp[0]=True

for i in range(N):
    for w in range(M,0,-1):
        if W[i]<=w:
            dp[w]=dp[w-W[i]]

print("possible" if sm%2==0 and dp[sm//2] else "impossible")
0