結果

問題 No.4 おもりと天秤
ユーザー _manji0_manji0
提出日時 2022-01-14 01:47:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,120 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 45,412 KB
最終ジャッジ日時 2024-11-17 23:13:23
合計ジャッジ時間 15,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 474 ms
43,820 KB
testcase_01 AC 470 ms
43,712 KB
testcase_02 AC 464 ms
43,588 KB
testcase_03 AC 468 ms
43,460 KB
testcase_04 AC 469 ms
43,564 KB
testcase_05 AC 810 ms
43,612 KB
testcase_06 AC 460 ms
43,588 KB
testcase_07 AC 812 ms
43,616 KB
testcase_08 AC 468 ms
43,584 KB
testcase_09 AC 1,120 ms
45,412 KB
testcase_10 AC 858 ms
43,864 KB
testcase_11 AC 462 ms
43,456 KB
testcase_12 AC 477 ms
43,708 KB
testcase_13 AC 467 ms
43,436 KB
testcase_14 AC 473 ms
43,484 KB
testcase_15 AC 473 ms
43,588 KB
testcase_16 AC 466 ms
43,436 KB
testcase_17 AC 463 ms
43,328 KB
testcase_18 AC 801 ms
43,620 KB
testcase_19 AC 802 ms
43,428 KB
testcase_20 AC 766 ms
43,492 KB
testcase_21 AC 766 ms
43,840 KB
testcase_22 AC 766 ms
43,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy

def main():
    N = int(input())
    W = [ int(i) for i in input().split() ]

    su = sum(W)

    if su % 2 == 1:
        print("impossible")
        return

    su = su // 2

    dp = numpy.zeros((N+1, su+1))

    for i in range(N+1):
        dp[i][0] = 1

    for j in range(1, su+1):
        dp[0][j] = 0


    for i in range(1, N+1):
        for j in range(1, su+1):
            w = W[i-1]

            if j-w < 0:
                dp[i][j] = 0
            else:
                dp[i][j] = max(dp[i-1][j], dp[i-1][j-w]) * 1

    if dp[N][su]:
        print("possible")
    else:
        print("impossible")


if __name__ == "__main__":
    main()
0