結果

問題 No.4 おもりと天秤
ユーザー MitI_7MitI_7
提出日時 2017-05-10 20:32:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 509 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 10,844 KB
実行使用メモリ 7,960 KB
最終ジャッジ日時 2023-10-13 10:05:27
合計ジャッジ時間 1,450 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,816 KB
testcase_01 AC 15 ms
7,860 KB
testcase_02 AC 15 ms
7,824 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 16 ms
7,772 KB
testcase_07 WA -
testcase_08 AC 15 ms
7,836 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 15 ms
7,844 KB
testcase_12 AC 15 ms
7,836 KB
testcase_13 AC 15 ms
7,832 KB
testcase_14 AC 15 ms
7,856 KB
testcase_15 AC 16 ms
7,960 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 16 ms
7,780 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, w_list):
    total = sum(w_list)
    if total % 2 != 0:
        return "impossible"

    k = total // 2
    dp = [False] * (k + 1)
    dp[0] = True
    for w in w_list:
        for i in range(len(dp)):
            if dp[i] and i + w < len(dp):
                dp[i + w] = True
                break

    return "possible" if dp[k] else "impossible"


def main():
    n = int(input())
    w_list = list(map(int, input().split()))
    print(solve(n, w_list))


if __name__ == '__main__':
    main()
0