結果

問題 No.4 おもりと天秤
ユーザー mitsushinomitsushino
提出日時 2017-12-22 16:52:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 262 ms / 5,000 ms
コード長 1,107 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-06-26 10:26:05
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 34 ms
10,880 KB
testcase_05 AC 143 ms
15,360 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 145 ms
15,232 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 262 ms
18,944 KB
testcase_10 AC 157 ms
15,872 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 28 ms
10,880 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 140 ms
14,848 KB
testcase_19 AC 128 ms
14,848 KB
testcase_20 AC 129 ms
14,720 KB
testcase_21 AC 120 ms
14,464 KB
testcase_22 AC 123 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-


def make_dp_table(N, sum_weight_list):
    dp = [[False for _ in range(sum_weight_list + 1)] for _ in range(N)]
    for i in range(N):
        if i == 0:
            for j in range(sum_weight_list + 1):
                if j == weight_list[i]:
                    dp[i][j] = True
                    break
        else:
            for j in range(1, sum_weight_list + 1):
                if j == weight_list[i]:
                    dp[i][j] = True
                elif j < weight_list[i]:
                    dp[i][j] = dp[i - 1][j]
                else:
                    dp[i][j] = dp[i - 1][j] or dp[i - 1][j - weight_list[i]]
    return dp


if __name__ == '__main__':
    N = int(input())
    weight_list = list(map(int, input().split()))
    weight_list.sort()
    sum_weight_list = sum(weight_list)
    if sum_weight_list % 2 != 0:
        print('impossible')
    else:
        dp = make_dp_table(N, sum_weight_list)
        target_val = int(sum_weight_list / 2)
        if dp[N - 1][target_val]:
            print('possible')
        else:
            print('impossible')
0