結果

問題 No.4 おもりと天秤
ユーザー こるこる
提出日時 2017-01-04 13:23:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 597 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-06-26 10:06:28
合計ジャッジ時間 1,697 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 45 ms
13,056 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 45 ms
13,056 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 58 ms
14,848 KB
testcase_10 AC 47 ms
13,440 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 69 ms
13,056 KB
testcase_19 AC 44 ms
12,800 KB
testcase_20 AC 43 ms
12,800 KB
testcase_21 AC 42 ms
12,544 KB
testcase_22 AC 43 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

n=int(input())
w=[int(i) for i in input().split()]

weight=sum(w)
if weight%2!=0:
    print("impossible")
    sys.exit()
weight=int(weight/2)

dp=[[False for i in range(weight+1)] for j in range(n+1)]

def dfs(index,weight):

    if weight<0:
        return False

    if dp[index][weight]:
        return False

    if index==n:
        if weight==0:
            print("possible")
            sys.exit()
        return False

    dfs(index+1,weight-w[index])
    dfs(index+1,weight)

    dp[index][weight]=True

    return False


dfs(1,weight-w[0])
dfs(1,weight)

print("impossible")
0