結果

問題 No.4 おもりと天秤
ユーザー dangodango
提出日時 2023-06-14 21:09:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,988 KB
実行使用メモリ 59,976 KB
最終ジャッジ日時 2024-06-23 03:13:23
合計ジャッジ時間 1,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,988 KB
testcase_01 AC 34 ms
52,760 KB
testcase_02 AC 36 ms
58,072 KB
testcase_03 AC 36 ms
58,620 KB
testcase_04 AC 36 ms
58,140 KB
testcase_05 AC 39 ms
59,184 KB
testcase_06 AC 36 ms
52,524 KB
testcase_07 AC 40 ms
59,192 KB
testcase_08 AC 34 ms
53,276 KB
testcase_09 AC 40 ms
58,004 KB
testcase_10 AC 39 ms
59,976 KB
testcase_11 AC 33 ms
53,428 KB
testcase_12 AC 32 ms
53,156 KB
testcase_13 AC 32 ms
51,880 KB
testcase_14 AC 31 ms
52,992 KB
testcase_15 AC 31 ms
53,280 KB
testcase_16 AC 32 ms
52,304 KB
testcase_17 AC 31 ms
52,584 KB
testcase_18 AC 36 ms
58,788 KB
testcase_19 AC 38 ms
59,268 KB
testcase_20 AC 38 ms
58,180 KB
testcase_21 AC 39 ms
58,232 KB
testcase_22 AC 39 ms
57,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def balance(weights: list) -> str:
    total_weight = sum(weights)
    if total_weight % 2 != 0:
        return "impossible"
    half_weight = total_weight // 2
    possible = [False] * (half_weight + 1)
    possible[0] = True
    for weight in weights:
        for i in range(half_weight, weight - 1, -1):
            if possible[i - weight]:
                possible[i] = True
    return "possible" if possible[half_weight] else "impossible"
N = int(input())
W = list(map(int, input().split()))
print(balance(W))
0