結果

問題 No.4 おもりと天秤
ユーザー sjikisjiki
提出日時 2021-08-23 22:17:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 577 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-04-25 14:54:17
合計ジャッジ時間 2,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 78 ms
13,056 KB
testcase_06 WA -
testcase_07 AC 78 ms
12,928 KB
testcase_08 WA -
testcase_09 AC 125 ms
14,848 KB
testcase_10 AC 84 ms
13,184 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 WA -
testcase_19 AC 73 ms
12,672 KB
testcase_20 AC 72 ms
12,928 KB
testcase_21 AC 69 ms
12,416 KB
testcase_22 AC 71 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]

test = part_sum0(l,int(sum/2))
if test:
    print('possible')
0