結果

問題 No.4 おもりと天秤
ユーザー kiccho1101kiccho1101
提出日時 2022-04-23 18:38:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 69,632 KB
最終ジャッジ日時 2024-06-25 05:20:54
合計ジャッジ時間 2,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,032 KB
testcase_01 AC 48 ms
60,160 KB
testcase_02 AC 51 ms
62,472 KB
testcase_03 AC 50 ms
61,576 KB
testcase_04 AC 53 ms
62,336 KB
testcase_05 AC 75 ms
69,376 KB
testcase_06 AC 52 ms
59,776 KB
testcase_07 AC 75 ms
69,120 KB
testcase_08 AC 69 ms
68,736 KB
testcase_09 AC 71 ms
69,376 KB
testcase_10 AC 74 ms
69,120 KB
testcase_11 AC 50 ms
60,800 KB
testcase_12 AC 48 ms
60,032 KB
testcase_13 AC 48 ms
60,032 KB
testcase_14 AC 48 ms
60,160 KB
testcase_15 AC 48 ms
60,032 KB
testcase_16 AC 52 ms
61,184 KB
testcase_17 AC 53 ms
61,184 KB
testcase_18 AC 72 ms
69,120 KB
testcase_19 AC 74 ms
68,992 KB
testcase_20 AC 75 ms
69,632 KB
testcase_21 AC 75 ms
69,632 KB
testcase_22 AC 72 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# dp[i][j]: i番目までのおもりで左がjになるかどうか
dp = [[False] * 10001 for _ in range(N + 1)]

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

s = sum(W)
if s % 2 == 1 or not dp[N][s // 2]:
    print("impossible")
else:
    print("possible")
0