結果

問題 No.4 おもりと天秤
ユーザー mtkmtk
提出日時 2018-12-25 14:24:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-10-01 13:16:18
合計ジャッジ時間 2,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 123 ms
12,800 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 132 ms
12,800 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 246 ms
14,592 KB
testcase_10 AC 152 ms
12,928 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 24 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 WA -
testcase_17 AC 24 ms
10,624 KB
testcase_18 WA -
testcase_19 AC 114 ms
12,672 KB
testcase_20 AC 116 ms
12,672 KB
testcase_21 AC 104 ms
12,416 KB
testcase_22 AC 107 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
Ws=list(map(int,input().split()))
if sum(Ws)%2==1:
    print('impossible')
    exit()
W=sum(Ws)//2
dp =[[0]*(W+1) for i in range(N+1)]
dp[0][0]=1
for i in range(1,N+1):
    for w in range(W+1):
        if w >= Ws[i-1]:
            dp[i][w] = dp[i-1][w-Ws[i-1]] or dp[i-1][w]
        else:
            dp[i][w] = dp[i-1][w]
if dp[N][N]==1:
    print('possible')
else:
    print('impossible')
0