結果

問題 No.4 おもりと天秤
ユーザー トミートミー
提出日時 2024-03-26 01:54:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 624 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-09-30 14:12:41
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 32 ms
51,712 KB
testcase_02 AC 41 ms
60,288 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 49 ms
64,256 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 49 ms
64,768 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 52 ms
65,408 KB
testcase_10 AC 50 ms
64,512 KB
testcase_11 AC 43 ms
59,008 KB
testcase_12 AC 34 ms
51,712 KB
testcase_13 AC 34 ms
51,712 KB
testcase_14 AC 33 ms
52,224 KB
testcase_15 AC 33 ms
52,096 KB
testcase_16 WA -
testcase_17 AC 33 ms
51,584 KB
testcase_18 AC 47 ms
64,128 KB
testcase_19 AC 50 ms
63,872 KB
testcase_20 AC 50 ms
64,000 KB
testcase_21 AC 50 ms
64,128 KB
testcase_22 AC 47 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
w = list(map(int, input().split()))
if sum(w) % 2 == 1:
    print("impossible")
    exit()
else:
    div = int(sum(w)/2)
    # dp[i][j] i番目までのおもりをつかって重さjが作れるのか?
    dp = [[0 for j in range(div+1)] for i in range(n+1)]

    for i in range(1, n+1):
        if w[i-1]<=n:
            dp[i][w[i-1]] = 1
        for j in range(1, div+1):
            dp[i][j] = max(dp[i-1][j], dp[i][j])
            if w[i-1] < j:
                dp[i][j] = max(dp[i-1][j-w[i-1]], dp[i][j])

        

    if dp[n][div]:
        print("possible")
    else:
        print("impossible")
0