結果

問題 No.4 おもりと天秤
ユーザー るこーそーるこーそー
提出日時 2024-09-24 15:34:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 62,220 KB
最終ジャッジ日時 2024-09-24 15:34:35
合計ジャッジ時間 2,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,068 KB
testcase_01 AC 37 ms
52,800 KB
testcase_02 AC 43 ms
60,944 KB
testcase_03 AC 42 ms
60,236 KB
testcase_04 AC 42 ms
59,508 KB
testcase_05 AC 51 ms
61,860 KB
testcase_06 AC 36 ms
52,512 KB
testcase_07 AC 50 ms
61,928 KB
testcase_08 AC 42 ms
59,560 KB
testcase_09 AC 53 ms
60,716 KB
testcase_10 AC 51 ms
62,088 KB
testcase_11 AC 42 ms
59,736 KB
testcase_12 AC 36 ms
52,396 KB
testcase_13 AC 37 ms
52,652 KB
testcase_14 AC 38 ms
58,716 KB
testcase_15 AC 36 ms
53,532 KB
testcase_16 AC 41 ms
59,376 KB
testcase_17 AC 37 ms
52,480 KB
testcase_18 AC 49 ms
62,080 KB
testcase_19 AC 50 ms
62,220 KB
testcase_20 AC 51 ms
62,220 KB
testcase_21 AC 50 ms
61,768 KB
testcase_22 AC 50 ms
60,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
W=list(map(int,input().split()))

sum_w=sum(W)
dp=[False]*(sum_w+1)
dp[0]=True
for i in range(n):
    for j in range(sum_w,-1,-1):
        if j-W[i]>=0:
            dp[j]|=dp[j-W[i]]
      
        
print("possible" if sum_w%2==0 and dp[sum_w//2] else "impossible")
0