結果

問題 No.4 おもりと天秤
ユーザー soisusoisu
提出日時 2021-09-20 10:03:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 5,000 ms
コード長 340 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 73,728 KB
最終ジャッジ日時 2024-07-02 13:04:23
合計ジャッジ時間 2,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 44 ms
51,968 KB
testcase_02 AC 63 ms
63,744 KB
testcase_03 AC 56 ms
61,312 KB
testcase_04 AC 63 ms
63,744 KB
testcase_05 AC 98 ms
73,728 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 98 ms
73,344 KB
testcase_08 AC 52 ms
59,776 KB
testcase_09 AC 91 ms
71,680 KB
testcase_10 AC 98 ms
73,216 KB
testcase_11 AC 52 ms
60,288 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 41 ms
51,840 KB
testcase_14 AC 48 ms
58,752 KB
testcase_15 AC 41 ms
51,968 KB
testcase_16 AC 53 ms
60,288 KB
testcase_17 AC 41 ms
51,840 KB
testcase_18 AC 94 ms
72,320 KB
testcase_19 AC 97 ms
72,576 KB
testcase_20 AC 97 ms
73,088 KB
testcase_21 AC 96 ms
72,832 KB
testcase_22 AC 98 ms
73,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Max=max(W)*N+1
dp=[[False]*Max for i in range(N+1)]
dp[0][0]=True

for i in range(N):
    for j in range(Max):
        if j+W[i]<Max:
            dp[i+1][j+W[i]]|=dp[i][j]
        if abs(j-W[i])<Max:
            dp[i+1][abs(j-W[i])]|=dp[i][j]

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