結果

問題 No.4 おもりと天秤
ユーザー vallyvally
提出日時 2023-08-28 12:48:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 63,924 KB
最終ジャッジ日時 2024-12-29 12:06:44
合計ジャッジ時間 2,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,276 KB
testcase_01 AC 38 ms
52,100 KB
testcase_02 AC 43 ms
59,040 KB
testcase_03 AC 43 ms
58,140 KB
testcase_04 AC 43 ms
58,428 KB
testcase_05 AC 49 ms
62,276 KB
testcase_06 AC 38 ms
52,820 KB
testcase_07 AC 51 ms
62,856 KB
testcase_08 AC 38 ms
52,364 KB
testcase_09 AC 47 ms
63,924 KB
testcase_10 AC 48 ms
62,600 KB
testcase_11 AC 42 ms
57,132 KB
testcase_12 AC 38 ms
52,756 KB
testcase_13 AC 39 ms
52,280 KB
testcase_14 AC 38 ms
53,360 KB
testcase_15 AC 38 ms
53,140 KB
testcase_16 AC 42 ms
57,252 KB
testcase_17 AC 39 ms
52,816 KB
testcase_18 AC 48 ms
61,668 KB
testcase_19 AC 49 ms
61,516 KB
testcase_20 AC 52 ms
63,328 KB
testcase_21 AC 49 ms
63,584 KB
testcase_22 AC 48 ms
63,256 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(half + 1)]
    dp[0] = 1
    for i in w:
        temp = dp.copy()
        for j in range(half + 1):
            

            if temp[j] == 1 and j + i <= half:
                dp[j + i] = 1
    if dp[half] ==1:
        print('possible')
    else:
        print('impossible')
0