結果

問題 No.4 おもりと天秤
ユーザー yassu0320yassu0320
提出日時 2021-07-11 12:32:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 1,218 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-07-02 03:02:34
合計ジャッジ時間 2,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
11,392 KB
testcase_01 AC 37 ms
11,264 KB
testcase_02 AC 39 ms
11,520 KB
testcase_03 AC 38 ms
11,392 KB
testcase_04 AC 39 ms
11,520 KB
testcase_05 AC 103 ms
13,440 KB
testcase_06 AC 38 ms
11,264 KB
testcase_07 AC 102 ms
13,696 KB
testcase_08 AC 38 ms
11,392 KB
testcase_09 AC 158 ms
15,360 KB
testcase_10 AC 111 ms
13,952 KB
testcase_11 AC 37 ms
11,520 KB
testcase_12 AC 37 ms
11,520 KB
testcase_13 AC 37 ms
11,392 KB
testcase_14 AC 38 ms
11,520 KB
testcase_15 AC 37 ms
11,392 KB
testcase_16 AC 38 ms
11,392 KB
testcase_17 AC 37 ms
11,520 KB
testcase_18 AC 102 ms
13,568 KB
testcase_19 AC 96 ms
13,184 KB
testcase_20 AC 95 ms
13,440 KB
testcase_21 AC 93 ms
13,184 KB
testcase_22 AC 93 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

from sys import setrecursionlimit, stdin
from typing import Dict, Iterable, Set

INF: int = 2**62
MOD: int = 10**9 + 7

setrecursionlimit(10**6)


def inputs(type_=int):
    ins = input().split(' ')
    ins = [x for x in ins if x != '']

    if isinstance(type_, Iterable):
        return [t(x) for t, x in zip(type_, ins)]
    else:
        return list(map(type_, ins))


def input_(type_=int):
    a, = inputs(type_)
    return a


inputi = input_


def inputstr():
    return input_(str)


# b/aの切り上げ
def ceil(b, a):
    return (a + b - 1) // a


def answer(res) -> None:
    print(res)
    exit()


def compute():
    return


def main():
    n = inputi()
    ws = inputs()
    if sum(ws) %2 == 1:
        print('impossible')
        exit()
    target = sum(ws) // 2
    ws = [0] + ws
    n += 1

    dp = [[False] * (target+1) for _ in range(n)]
    dp[0][0] = True

    for i in range(1, n):
        for j in range(target + 1):
            dp[i][j] = dp[i-1][j]
            if 0 <= j - ws[i] <= target:
                dp[i][j] |= dp[i - 1][j-ws[i]]

    if dp[-1][target]:
        print('possible')
    else:
        print('impossible')


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