結果

問題 No.4 おもりと天秤
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-07-11 22:24:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 67,712 KB
最終ジャッジ日時 2024-07-02 03:17:20
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,368 KB
testcase_01 AC 46 ms
56,960 KB
testcase_02 AC 50 ms
60,032 KB
testcase_03 AC 51 ms
59,392 KB
testcase_04 AC 50 ms
59,904 KB
testcase_05 AC 110 ms
67,328 KB
testcase_06 AC 47 ms
58,752 KB
testcase_07 AC 65 ms
67,712 KB
testcase_08 AC 52 ms
64,768 KB
testcase_09 AC 62 ms
66,688 KB
testcase_10 AC 64 ms
66,688 KB
testcase_11 AC 48 ms
59,008 KB
testcase_12 AC 47 ms
58,112 KB
testcase_13 AC 47 ms
58,368 KB
testcase_14 AC 47 ms
58,368 KB
testcase_15 AC 46 ms
58,240 KB
testcase_16 AC 48 ms
59,008 KB
testcase_17 AC 48 ms
58,624 KB
testcase_18 AC 64 ms
66,944 KB
testcase_19 AC 64 ms
67,328 KB
testcase_20 AC 65 ms
67,584 KB
testcase_21 AC 65 ms
67,456 KB
testcase_22 AC 64 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
w = list(map(int,input().split()))

d = [[0 for i in range(10**4 + 1)] for j in range(n+1)]
d[0][0] = 1

s = sum(w)
if s%2 == 1:
    print("impossible")
    exit()
for i in range(n):
    for j in range(10**4 + 1):
        if d[i][j] == 1:
            d[i+1][j] = 1
            d[i+1][j+w[i]] = 1

if d[-1][s//2] == 1:
    print("possible")
else:
    print("impossible")
0