結果

問題 No.4 おもりと天秤
ユーザー fmhrfmhr
提出日時 2015-04-22 16:37:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 269 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-05 00:14:27
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,752 KB
testcase_01 AC 41 ms
10,752 KB
testcase_02 AC 59 ms
10,752 KB
testcase_03 AC 54 ms
10,880 KB
testcase_04 AC 60 ms
10,752 KB
testcase_05 AC 250 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 253 ms
10,752 KB
testcase_08 AC 262 ms
10,752 KB
testcase_09 AC 141 ms
10,752 KB
testcase_10 AC 241 ms
10,880 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 34 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 33 ms
10,752 KB
testcase_16 AC 46 ms
10,752 KB
testcase_17 AC 40 ms
10,752 KB
testcase_18 AC 189 ms
10,752 KB
testcase_19 AC 247 ms
10,752 KB
testcase_20 AC 255 ms
10,752 KB
testcase_21 AC 270 ms
10,752 KB
testcase_22 AC 254 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0] * 11000
sum = sum(W)
dp[0] = W[0]
for i in range(N):
    for j in range(10000):
        if dp[j]:
            dp[j+W[i]] = 1
if sum%2 == 0 and dp[sum//2]:
    print('possible')
else:
    print('impossible')
0