結果

問題 No.4 おもりと天秤
ユーザー shokayamorishokayamori
提出日時 2020-12-05 20:50:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 492 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-09-16 03:18:50
合計ジャッジ時間 4,115 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 35 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 36 ms
10,752 KB
testcase_05 AC 292 ms
14,720 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 305 ms
14,848 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 492 ms
18,432 KB
testcase_10 AC 334 ms
15,232 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 29 ms
10,496 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 31 ms
10,496 KB
testcase_17 AC 29 ms
10,496 KB
testcase_18 AC 277 ms
14,592 KB
testcase_19 AC 275 ms
14,464 KB
testcase_20 AC 266 ms
14,336 KB
testcase_21 AC 262 ms
14,080 KB
testcase_22 AC 266 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(input())
Ws = list(map(int, input().split()))

w_sum = sum(Ws)
if w_sum % 2 != 0:
    print('impossible')
    sys.exit()

dp = [[True] + [False]*w_sum for i in range(N)]
for i in range(N):
    for j in range(w_sum+1):
        if dp[i-1][j]:
            dp[i][j] = True
        if j - Ws[i] < 0:
            continue
        if dp[i-1][j - Ws[i]]:
            dp[i][j] = True

if dp[-1][w_sum//2]:
    print('possible')
else:
    print('impossible')
0