結果

問題 No.4 おもりと天秤
ユーザー AEnAEn
提出日時 2022-05-16 16:05:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,840 KB
最終ジャッジ日時 2024-09-14 08:12:26
合計ジャッジ時間 2,417 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 47 ms
59,064 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
51,584 KB
testcase_07 WA -
testcase_08 AC 39 ms
51,584 KB
testcase_09 AC 87 ms
83,840 KB
testcase_10 WA -
testcase_11 AC 42 ms
58,496 KB
testcase_12 AC 39 ms
51,584 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 39 ms
51,968 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 WA -
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 57 ms
68,992 KB
testcase_19 AC 57 ms
67,840 KB
testcase_20 AC 56 ms
67,968 KB
testcase_21 AC 56 ms
67,584 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

sm = sum(W)
if sm%2 == 1:
    print('impossible')
    exit()
dp = [[True]+[False]*sm for _ in range(N)]
dp[0][W[0]] = True
for i in range(1, N):
    for j in range(sm+1):
        dp[i][j] = dp[i-1][j]
        if j - W[i] >= 0:
            dp[i][j] = dp[i-1][j-W[i]]
if dp[-1][sm//2]:
    print('possible')
else:
    print('impossible')
0