結果

問題 No.4 おもりと天秤
ユーザー kiccho1101kiccho1101
提出日時 2022-04-23 18:29:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-06-25 05:20:46
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,032 KB
testcase_01 AC 52 ms
60,544 KB
testcase_02 AC 62 ms
64,128 KB
testcase_03 WA -
testcase_04 AC 62 ms
64,256 KB
testcase_05 AC 84 ms
71,552 KB
testcase_06 AC 51 ms
60,416 KB
testcase_07 AC 86 ms
71,808 KB
testcase_08 AC 78 ms
68,608 KB
testcase_09 AC 83 ms
70,784 KB
testcase_10 AC 88 ms
71,680 KB
testcase_11 AC 55 ms
61,824 KB
testcase_12 AC 51 ms
60,288 KB
testcase_13 AC 52 ms
60,544 KB
testcase_14 AC 53 ms
60,672 KB
testcase_15 AC 52 ms
60,544 KB
testcase_16 WA -
testcase_17 AC 55 ms
61,824 KB
testcase_18 AC 87 ms
71,424 KB
testcase_19 AC 88 ms
71,552 KB
testcase_20 AC 89 ms
72,192 KB
testcase_21 AC 90 ms
72,320 KB
testcase_22 AC 87 ms
71,808 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]
        if j + w < 10001:
            dp[i + 1][j] |= dp[i][j + w]
        if j - w >= 0:
            dp[i + 1][j] |= dp[i][j - w]

if dp[N][0]:
    print("possible")
else:
    print("impossible")
0