結果

問題 No.4 おもりと天秤
ユーザー roarisroaris
提出日時 2019-07-28 13:42:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 339 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-07-02 15:01:46
合計ジャッジ時間 3,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 37 ms
10,624 KB
testcase_03 AC 35 ms
10,752 KB
testcase_04 AC 35 ms
10,624 KB
testcase_05 AC 219 ms
20,352 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 228 ms
20,992 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 339 ms
14,720 KB
testcase_10 AC 238 ms
21,760 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 212 ms
16,640 KB
testcase_19 AC 197 ms
19,840 KB
testcase_20 AC 193 ms
19,712 KB
testcase_21 AC 187 ms
19,200 KB
testcase_22 AC 189 ms
19,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if sum(w) % 2 != 0:
    print('impossible')
    exit()

W = sum(w) // 2
dp = [[0 for _ in range(W+1)] for _ in range(N+1)]
dp[0][0] = 1

for i in range(N):
    for j in range(W+1):
        dp[i+1][j] = dp[i][j]
        if j - w[i] >= 0:
            dp[i+1][j] += dp[i][j-w[i]]

if dp[N][W] >= 1:
    print('possible')
else:
    print('impossible')
0