結果

問題 No.4 おもりと天秤
ユーザー zinnnia123zinnnia123
提出日時 2019-08-18 20:32:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-04-09 02:39:03
合計ジャッジ時間 3,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 149 ms
13,056 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 157 ms
13,056 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 122 ms
14,848 KB
testcase_10 AC 162 ms
13,312 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 110 ms
13,184 KB
testcase_19 AC 140 ms
12,800 KB
testcase_20 AC 139 ms
12,672 KB
testcase_21 AC 132 ms
12,416 KB
testcase_22 AC 138 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
W = list(map(int, input().split()))

A = sum(W)

if (A/2).is_integer() == False:
    print('impossible')
else:
    A = int(A/2)
    S = [[0 for i in range(A+1)] for j in range(N+1)]
    S[0][0] = 1
    for i in range(N):
        for j in range(A+1):
            if S[i][j] == 1:
                if j + W[i] > A:
                    S[i+1][j] = 1                                              
                else:
                    S[i+1][j+W[i]] = 1
                    S[i+1][j] = 1
    if S[N][A] == 1:
        print('possible')
    else:
        print('impossible') 
0