传统题 1000ms 256MiB

B - Product Max

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

B - Product Max

Score : $200$ points

Problem Statement

Given are integers $a,b,c$ and $d$. If $x$ and $y$ are integers and $a \leq x \leq b$ and $c\leq y \leq d$ hold, what is the maximum possible value of $x \times y$?

Constraints

  • $-10^9 \leq a \leq b \leq 10^9$
  • $-10^9 \leq c \leq d \leq 10^9$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

aa bb cc dd

Output

Print the answer.


1 2 1 1
2

If $x = 1$ and $y = 1$ then $x \times y = 1$. If $x = 2$ and $y = 1$ then $x \times y = 2$. Therefore, the answer is $2$.


3 5 -4 -2
-6

The answer can be negative.


-1000000000 0 -1000000000 0
1000000000000000000

2024寒假入门组刷题营(十一)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-8 13:30
结束于
2024-2-8 15:30
持续时间
2 小时
主持人
参赛人数
11