結果

問題 No.4 おもりと天秤
ユーザー sjikisjiki
提出日時 2021-08-23 22:26:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 685 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 10,800 KB
実行使用メモリ 12,380 KB
最終ジャッジ日時 2023-08-07 20:35:53
合計ジャッジ時間 1,820 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,868 KB
testcase_01 AC 15 ms
7,888 KB
testcase_02 AC 17 ms
8,276 KB
testcase_03 AC 16 ms
7,896 KB
testcase_04 AC 16 ms
8,168 KB
testcase_05 AC 54 ms
10,464 KB
testcase_06 AC 15 ms
7,792 KB
testcase_07 AC 55 ms
10,500 KB
testcase_08 AC 15 ms
7,768 KB
testcase_09 AC 96 ms
12,380 KB
testcase_10 AC 60 ms
10,856 KB
testcase_11 AC 16 ms
7,784 KB
testcase_12 AC 15 ms
7,768 KB
testcase_13 AC 15 ms
7,812 KB
testcase_14 AC 15 ms
7,804 KB
testcase_15 AC 15 ms
7,768 KB
testcase_16 AC 15 ms
7,884 KB
testcase_17 AC 14 ms
7,888 KB
testcase_18 AC 54 ms
10,464 KB
testcase_19 AC 51 ms
10,148 KB
testcase_20 AC 51 ms
10,228 KB
testcase_21 AC 48 ms
9,948 KB
testcase_22 AC 49 ms
10,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = list(map(int, input().split()))
sum = 0
for i in l:
    sum += i

def part_sum0(a, A):
    # 初期化
    N = len(a)
    dp = [[0 for i in range(A + 1)] for j in range(N + 1)]
    dp[0][0] = 1

    # DP
    for i in range(N):
        for j in range(A + 1):
            if a[i] <= j:  # i+1番目の数字a[i]を足せるかも
                dp[i + 1][j] = dp[i][j - a[i]] or dp[i][j]
            else:  # 入る可能性はない
                dp[i + 1][j] = dp[i][j]
    return dp[N][A]

a = sum/2
if a.is_integer():
    test = part_sum0(l,int(sum/2))
    if test:
        print('possible')
    else:
        print('impossible')
else:
    print('impossible')
0