結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
10,752 KB
testcase_01 AC 41 ms
10,752 KB
testcase_02 AC 56 ms
10,880 KB
testcase_03 AC 50 ms
10,880 KB
testcase_04 AC 64 ms
10,752 KB
testcase_05 AC 255 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 263 ms
10,752 KB
testcase_08 AC 234 ms
10,880 KB
testcase_09 AC 144 ms
10,752 KB
testcase_10 AC 255 ms
10,880 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 31 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 46 ms
10,752 KB
testcase_17 AC 41 ms
10,752 KB
testcase_18 AC 192 ms
10,752 KB
testcase_19 AC 249 ms
10,752 KB
testcase_20 AC 252 ms
10,752 KB
testcase_21 AC 262 ms
10,752 KB
testcase_22 AC 250 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0] * 11000
dp[0] = 1
sum = sum(W)
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