結果

問題 No.4 おもりと天秤
ユーザー vallyvally
提出日時 2023-08-28 12:43:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 61,384 KB
最終ジャッジ日時 2024-12-29 11:53:30
合計ジャッジ時間 2,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,076 KB
testcase_01 AC 36 ms
52,864 KB
testcase_02 AC 43 ms
59,332 KB
testcase_03 AC 42 ms
59,380 KB
testcase_04 AC 43 ms
59,716 KB
testcase_05 AC 50 ms
61,272 KB
testcase_06 AC 37 ms
52,076 KB
testcase_07 AC 49 ms
60,456 KB
testcase_08 AC 38 ms
53,448 KB
testcase_09 AC 46 ms
59,304 KB
testcase_10 AC 48 ms
59,620 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
52,760 KB
testcase_14 WA -
testcase_15 AC 37 ms
52,036 KB
testcase_16 AC 41 ms
58,140 KB
testcase_17 AC 39 ms
53,236 KB
testcase_18 AC 47 ms
60,132 KB
testcase_19 AC 49 ms
61,384 KB
testcase_20 AC 49 ms
61,328 KB
testcase_21 AC 47 ms
60,644 KB
testcase_22 AC 45 ms
59,812 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