結果

問題 No.4 おもりと天秤
ユーザー sjikisjiki
提出日時 2021-08-23 22:26:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 685 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-04-25 15:00:24
合計ジャッジ時間 1,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 73 ms
13,056 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 72 ms
12,928 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 120 ms
14,848 KB
testcase_10 AC 84 ms
13,312 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 73 ms
12,928 KB
testcase_19 AC 67 ms
12,800 KB
testcase_20 AC 67 ms
12,672 KB
testcase_21 AC 64 ms
12,544 KB
testcase_22 AC 67 ms
12,800 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