結果

問題 No.4 おもりと天秤
ユーザー かいかい
提出日時 2023-06-19 03:36:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 429 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-06-26 14:33:31
合計ジャッジ時間 2,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,624 KB
testcase_01 AC 44 ms
58,880 KB
testcase_02 AC 46 ms
60,032 KB
testcase_03 AC 46 ms
59,648 KB
testcase_04 AC 46 ms
60,800 KB
testcase_05 AC 69 ms
75,520 KB
testcase_06 AC 43 ms
58,112 KB
testcase_07 AC 74 ms
75,648 KB
testcase_08 AC 49 ms
61,312 KB
testcase_09 AC 49 ms
60,544 KB
testcase_10 AC 71 ms
75,904 KB
testcase_11 AC 45 ms
58,624 KB
testcase_12 AC 45 ms
58,624 KB
testcase_13 AC 45 ms
58,368 KB
testcase_14 AC 44 ms
58,880 KB
testcase_15 AC 44 ms
58,864 KB
testcase_16 AC 43 ms
58,752 KB
testcase_17 AC 43 ms
58,752 KB
testcase_18 AC 61 ms
75,480 KB
testcase_19 AC 67 ms
75,612 KB
testcase_20 AC 68 ms
75,844 KB
testcase_21 AC 68 ms
75,776 KB
testcase_22 AC 67 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [False for _ in range(100*100+1)]
dp[0] = True
# print(dp[2])
for i in range(N):
    s = set()
    for j in range(10001):
        if dp[j] and j+W[i]<=10000:
            s.add(j+W[i])
    for k in s:
        dp[k] = True
# for i in range(10001):
#     if dp[i]:
#         print(i-1)
if sum(W)%2 == 0 and dp[sum(W)//2]:
    print("possible")
else:
    print("impossible")
0