結果

問題 No.4 おもりと天秤
ユーザー AEnAEn
提出日時 2022-05-16 16:08:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-09-14 08:15:14
合計ジャッジ時間 2,187 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 50 ms
59,904 KB
testcase_03 AC 45 ms
59,264 KB
testcase_04 AC 53 ms
62,720 KB
testcase_05 AC 70 ms
72,704 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 70 ms
72,320 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 83 ms
83,712 KB
testcase_10 AC 72 ms
73,344 KB
testcase_11 AC 43 ms
58,112 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 44 ms
59,264 KB
testcase_17 AC 38 ms
51,712 KB
testcase_18 AC 62 ms
70,656 KB
testcase_19 AC 66 ms
71,680 KB
testcase_20 AC 67 ms
71,296 KB
testcase_21 AC 68 ms
70,912 KB
testcase_22 AC 66 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

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):
        if dp[i-1][j] == True:
            dp[i][j] = dp[i-1][j]
        if j - W[i] >= 0 and dp[i-1][j-W[i]]==True:
            dp[i][j] = dp[i-1][j-W[i]]
if dp[-1][sm//2]:
    print('possible')
else:
    print('impossible')
0