結果

問題 No.4 おもりと天秤
ユーザー zinnnia123zinnnia123
提出日時 2019-08-18 13:46:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 13:57:14
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 147 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 159 ms
10,880 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 88 ms
10,752 KB
testcase_10 AC 156 ms
10,752 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 25 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 104 ms
10,752 KB
testcase_19 AC 133 ms
10,752 KB
testcase_20 AC 129 ms
10,752 KB
testcase_21 AC 124 ms
10,752 KB
testcase_22 AC 139 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = sum(W)

if (A/2).is_integer() == False:
    print('impossible')
    exit()
else:
    A = int(A/2)
    S = [[0]*(A+1)]*(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:
                    A = A+0  
                else:
                    S[i+1][j+W[i]] = 1
                    S[i+1][j] = 1
    if S[N-1][A] == 1:
        print('possible')
    else:
        print('impossible')  
0