結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 162 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 163 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 98 ms
10,752 KB
testcase_10 AC 180 ms
10,752 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 29 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 106 ms
10,752 KB
testcase_19 AC 148 ms
10,752 KB
testcase_20 AC 145 ms
10,752 KB
testcase_21 AC 140 ms
10,752 KB
testcase_22 AC 141 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