結果
| 問題 |
No.4 おもりと天秤
|
| コンテスト | |
| ユーザー |
popketle
|
| 提出日時 | 2019-12-24 11:59:23 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 396 bytes |
| コンパイル時間 | 135 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 18,688 KB |
| 最終ジャッジ日時 | 2024-09-21 19:27:47 |
| 合計ジャッジ時間 | 3,940 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 RE * 1 |
ソースコード
n=int(input())
W=list(map(int,input().split()))
if sum(W)%2!=0:
print('impossible')
exit()
dp=[[False]*(100*100) for _ in range(n+1)]
dp[0][0],dp[0][W[0]]=True,True
for i in range(n):
for j in range(100*100):
if dp[i][j]==True:
dp[i+1][j+W[i]]=True
dp[i+1][j]=True
for i in range(n):
if dp[i][sum(W)//2]==True:
print('possible')
exit()
else:
print('impossible')
popketle