結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 137 ms
12,800 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 127 ms
12,928 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 233 ms
14,720 KB
testcase_10 AC 135 ms
13,184 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 24 ms
10,752 KB
testcase_15 AC 24 ms
10,624 KB
testcase_16 AC 24 ms
10,624 KB
testcase_17 AC 23 ms
10,624 KB
testcase_18 AC 125 ms
12,672 KB
testcase_19 AC 110 ms
12,544 KB
testcase_20 AC 116 ms
12,672 KB
testcase_21 AC 111 ms
12,544 KB
testcase_22 AC 113 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][W]==1:
    print('possible')
else:
    print('impossible')
0