結果
| 問題 | No.4 おもりと天秤 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-19 03:13:23 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 307 bytes |
| コンパイル時間 | 436 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 60,988 KB |
| 最終ジャッジ日時 | 2024-06-26 13:49:43 |
| 合計ジャッジ時間 | 2,440 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 13 |
ソースコード
N = int(input())
W = list(map(int, input().split()))
dp = [False for _ in range(100*100+1)]
dp[0] = True
for i in range(N):
for j in range(10001):
if dp[j] and dp[j]+W[i]<=10000:
dp[dp[j]+W[i]] = True
# print(dp)
if dp[sum(W)//2]:
print("possible")
else:
print("impossible")