結果

問題 No.4 おもりと天秤
ユーザー sjikisjiki
提出日時 2021-08-23 22:17:29
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 577 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 10,824 KB
実行使用メモリ 12,384 KB
最終ジャッジ日時 2023-08-07 20:28:55
合計ジャッジ時間 1,848 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,936 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 15 ms
7,868 KB
testcase_04 AC 16 ms
8,288 KB
testcase_05 AC 55 ms
10,532 KB
testcase_06 WA -
testcase_07 AC 56 ms
10,468 KB
testcase_08 WA -
testcase_09 AC 95 ms
12,384 KB
testcase_10 AC 61 ms
10,596 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 14 ms
7,724 KB
testcase_17 AC 15 ms
7,840 KB
testcase_18 WA -
testcase_19 AC 51 ms
10,064 KB
testcase_20 AC 50 ms
10,104 KB
testcase_21 AC 48 ms
9,988 KB
testcase_22 AC 49 ms
10,072 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