結果

問題 No.4 おもりと天秤
ユーザー human_cipherhuman_cipher
提出日時 2022-01-08 23:44:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 70,768 KB
最終ジャッジ日時 2024-11-14 09:54:31
合計ジャッジ時間 2,286 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,100 KB
testcase_01 AC 38 ms
53,016 KB
testcase_02 AC 46 ms
61,692 KB
testcase_03 AC 45 ms
59,716 KB
testcase_04 AC 45 ms
60,024 KB
testcase_05 AC 59 ms
66,672 KB
testcase_06 AC 39 ms
52,752 KB
testcase_07 AC 58 ms
65,300 KB
testcase_08 AC 37 ms
53,368 KB
testcase_09 AC 65 ms
70,768 KB
testcase_10 AC 60 ms
67,484 KB
testcase_11 AC 44 ms
58,980 KB
testcase_12 AC 38 ms
52,592 KB
testcase_13 AC 38 ms
52,944 KB
testcase_14 AC 42 ms
59,516 KB
testcase_15 AC 38 ms
52,680 KB
testcase_16 AC 43 ms
59,140 KB
testcase_17 AC 38 ms
53,332 KB
testcase_18 AC 58 ms
66,436 KB
testcase_19 AC 59 ms
67,024 KB
testcase_20 AC 60 ms
65,432 KB
testcase_21 AC 59 ms
65,508 KB
testcase_22 AC 58 ms
65,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
W = list(map(int,input().split()))

sumW = sum(W)
if sumW % 2 == 0:
    dp = [[False] * (sumW+1) for _ in range(n+1)]
    dp[0][0] = True
    for i in range(n):
        for j in range(sum(W)):
            if j - W[i] >= 0:
                dp[i+1][j] = dp[i][j] or dp[i][j-W[i]]
            else:
                dp[i+1][j] = dp[i][j]
    if dp[n][sumW//2]:
        ans = "possible"
    else:
        ans = "impossible"
else:
    ans = "impossible"
print(ans)
0