結果

問題 No.4 おもりと天秤
ユーザー i_takui_taku
提出日時 2023-09-29 09:33:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 251 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 61,184 KB
最終ジャッジ日時 2024-07-22 04:08:43
合計ジャッジ時間 2,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,496 KB
testcase_01 AC 47 ms
58,496 KB
testcase_02 AC 52 ms
60,672 KB
testcase_03 AC 52 ms
59,904 KB
testcase_04 AC 51 ms
60,032 KB
testcase_05 AC 69 ms
60,928 KB
testcase_06 AC 46 ms
58,752 KB
testcase_07 AC 68 ms
61,056 KB
testcase_08 AC 63 ms
59,520 KB
testcase_09 AC 65 ms
60,928 KB
testcase_10 AC 68 ms
61,056 KB
testcase_11 AC 48 ms
59,264 KB
testcase_12 AC 47 ms
58,496 KB
testcase_13 AC 47 ms
58,752 KB
testcase_14 AC 47 ms
58,368 KB
testcase_15 AC 47 ms
58,496 KB
testcase_16 AC 49 ms
60,160 KB
testcase_17 AC 47 ms
58,752 KB
testcase_18 AC 66 ms
60,672 KB
testcase_19 AC 69 ms
61,184 KB
testcase_20 AC 66 ms
60,672 KB
testcase_21 AC 67 ms
60,928 KB
testcase_22 AC 67 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
W = list(map(int, input().split()))
dp = [False] * (1 << 15)
dp[0] = True
for i in range(N):
    for j in range(1 << 14, -1, -1):
        dp[j] |= dp[j - W[i]]
print('possible' if sum(W) & 1 == 0 and dp[sum(W) // 2] else 'impossible')
0