結果

問題 No.4 おもりと天秤
ユーザー nanaenanae
提出日時 2017-02-09 20:27:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 846 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,004 KB
最終ジャッジ日時 2024-06-26 10:09:19
合計ジャッジ時間 1,980 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 87 ms
19,332 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 77 ms
18,400 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 92 ms
19,844 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 28 ms
10,880 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 137 ms
27,004 KB
testcase_19 AC 71 ms
18,560 KB
testcase_20 AC 73 ms
18,428 KB
testcase_21 AC 72 ms
18,448 KB
testcase_22 AC 71 ms
18,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from functools import lru_cache

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

def solve():
    @lru_cache(maxsize=None)
    def rec(m, weight):
        if weight == 0:
            return True
        elif m == 0:
            if Ws[0] == weight:
                return True
            else:
                return False
        else:
            return rec(m - 1, weight) or rec(m - 1, weight - Ws[m])
    
    N = int(input())
    Ws = [int(i) for i in input().split()]

    half, rem = divmod(sum(Ws), 2)

    if rem == 1:
        print('impossible')
        return

    if rec(N - 1, half):
        print('possible')
    else:
        print('impossible')
    pass

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