結果
| 問題 | No.4 おもりと天秤 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-27 15:56:30 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 331 ms / 5,000 ms |
| コード長 | 423 bytes |
| 記録 | |
| コンパイル時間 | 465 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 30,812 KB |
| 最終ジャッジ日時 | 2026-05-16 00:00:42 |
| 合計ジャッジ時間 | 5,505 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
N = int(input())
W = list(map(int, input().split()))
full = sum(W)
if full % 2 == 1:
print('impossible')
exit()
dp = [[False for i in range(0, full * 2 + 1)] for j in range(N + 1)]
dp[0][full] = True
for i in range(N):
for j in range(-full, full + 1):
if dp[i][j]:
dp[i + 1][j + W[i]] = True
dp[i + 1][j - W[i]] = True
print('possible' if dp[N][full] else 'impossible')