結果

問題 No.4 おもりと天秤
ユーザー strn5strn5
提出日時 2019-07-25 02:02:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 254 ms / 5,000 ms
コード長 638 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-06-28 16:57:24
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 34 ms
10,496 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 150 ms
12,928 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 149 ms
12,672 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 254 ms
14,976 KB
testcase_10 AC 166 ms
13,184 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 28 ms
10,496 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,496 KB
testcase_18 AC 146 ms
12,800 KB
testcase_19 AC 140 ms
12,672 KB
testcase_20 AC 139 ms
12,544 KB
testcase_21 AC 129 ms
12,288 KB
testcase_22 AC 129 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
N = int(input())
W = list(map(int, input().split()))
sum = 0
for i in range(len(W)):
    sum += W[i]

#合計が偶数でない時に終了
if sum % 2 != 0:
    print("impossible")
    sys.exit()
    
hsum = int(sum / 2)

DP = [[0 for i in range(hsum + 1)] for j in range(N + 1)]
DP[0][0] = 1
for i in range(1, N + 1):
    for j in range(0, hsum + 1):
        if j < W[i-1]:
            DP[i][j] = DP[i-1][j]
        else:
            if DP[i-1][j-W[i-1]] == 1:
                DP[i][j] = 1
            elif DP[i-1][j] == 1:
                DP[i][j] = 1

if DP[N][hsum] == 1:
    print("possible")
else:
    print("impossible")
0