結果

問題 No.4 おもりと天秤
ユーザー vallyvally
提出日時 2023-08-28 12:48:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-06-09 08:09:57
合計ジャッジ時間 1,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
58,240 KB
testcase_03 AC 42 ms
57,856 KB
testcase_04 AC 42 ms
58,624 KB
testcase_05 AC 48 ms
62,336 KB
testcase_06 AC 38 ms
52,196 KB
testcase_07 AC 50 ms
62,080 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 49 ms
62,848 KB
testcase_10 AC 48 ms
61,824 KB
testcase_11 AC 40 ms
57,600 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 38 ms
51,456 KB
testcase_15 AC 36 ms
51,840 KB
testcase_16 AC 39 ms
57,856 KB
testcase_17 AC 33 ms
52,352 KB
testcase_18 AC 45 ms
61,184 KB
testcase_19 AC 47 ms
61,184 KB
testcase_20 AC 49 ms
61,824 KB
testcase_21 AC 48 ms
61,696 KB
testcase_22 AC 48 ms
61,312 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