結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,800 KB
testcase_01 AC 47 ms
61,568 KB
testcase_02 AC 56 ms
67,328 KB
testcase_03 WA -
testcase_04 AC 57 ms
66,944 KB
testcase_05 AC 98 ms
83,756 KB
testcase_06 AC 47 ms
60,928 KB
testcase_07 AC 100 ms
83,584 KB
testcase_08 AC 97 ms
83,688 KB
testcase_09 AC 95 ms
83,456 KB
testcase_10 AC 98 ms
83,516 KB
testcase_11 AC 48 ms
63,360 KB
testcase_12 AC 46 ms
61,056 KB
testcase_13 AC 46 ms
61,056 KB
testcase_14 AC 45 ms
61,696 KB
testcase_15 AC 45 ms
61,312 KB
testcase_16 WA -
testcase_17 AC 49 ms
63,104 KB
testcase_18 AC 97 ms
83,384 KB
testcase_19 AC 96 ms
83,448 KB
testcase_20 AC 96 ms
83,404 KB
testcase_21 AC 95 ms
83,584 KB
testcase_22 AC 96 ms
83,456 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 reversed(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