結果

問題 No.4 おもりと天秤
ユーザー vallyvally
提出日時 2023-08-28 12:43:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 61,872 KB
最終ジャッジ日時 2024-06-09 08:05:20
合計ジャッジ時間 2,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,948 KB
testcase_01 AC 39 ms
52,820 KB
testcase_02 AC 43 ms
59,224 KB
testcase_03 AC 42 ms
58,672 KB
testcase_04 AC 46 ms
59,896 KB
testcase_05 AC 48 ms
60,252 KB
testcase_06 AC 39 ms
52,400 KB
testcase_07 AC 48 ms
61,872 KB
testcase_08 AC 38 ms
52,428 KB
testcase_09 AC 44 ms
59,420 KB
testcase_10 AC 46 ms
60,204 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
53,312 KB
testcase_14 WA -
testcase_15 AC 37 ms
52,908 KB
testcase_16 AC 41 ms
58,552 KB
testcase_17 AC 38 ms
52,360 KB
testcase_18 AC 47 ms
60,608 KB
testcase_19 AC 47 ms
59,724 KB
testcase_20 AC 48 ms
61,128 KB
testcase_21 AC 47 ms
60,852 KB
testcase_22 AC 47 ms
61,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
w = [int(i) for i in input().split()]
sum0 = sum(w)
if sum0 % 2 == 1:
    print('impossible')
else:
    half = sum0 // 2
    dp = [0 for i in range(sum0 // 2 + 1)]
    dp[0] = 1
    for i in w:
        for j in range(half + 1):
            if dp[j] == 1 and j + i <= half:
                dp[j + i] = 1
    if dp[half] ==1:
        print('possible')
    else:
        print('impossible')
0