結果

問題 No.4 おもりと天秤
ユーザー kazz4423kazz4423
提出日時 2017-07-22 22:42:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 950 ms / 5,000 ms
コード長 726 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 80,976 KB
最終ジャッジ日時 2024-06-26 10:21:19
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 41 ms
11,776 KB
testcase_03 AC 36 ms
11,008 KB
testcase_04 AC 41 ms
11,648 KB
testcase_05 AC 496 ms
47,432 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 515 ms
47,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 950 ms
80,976 KB
testcase_10 AC 556 ms
51,064 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 469 ms
46,348 KB
testcase_19 AC 449 ms
44,836 KB
testcase_20 AC 433 ms
44,872 KB
testcase_21 AC 422 ms
43,528 KB
testcase_22 AC 425 ms
43,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
W = [int(i) for i in input().split()]

sW = list(reversed(sorted(W)))
target = int(sum(W)/2)
dp ={}
if sum(W)%2 ==0:

    if sW[0] == target: # 最大値がそのままターゲットなら”可能”
        print("possible")
    else:
        for j in range(int(target)+1):
            dp[(N-1,j)] = 0
        for i in reversed(range(N-1)):
            for j in range(int(target)+1):
                if (j < W[i]):
                    dp[(i,j)] = dp[(i+1, j)]
                else:
                    dp[(i,j)] = max(dp[(i+1, j)], dp[(i+1, j - W[i])]+W[i])
        if target == dp[(0,int(target))]:
            print("possible")
        else:
            print("impossible")

else:
    print("impossible")
0