#abc261a. A - Intersection
A - Intersection
Score : points
问题描述
我们有一条数轴。Takahashi按照以下方式给该数轴的部分区域涂色:
- 首先,他将从 到 的部分涂成红色。
- 接着,他将从 到 的部分涂成蓝色。
请找出被同时涂成红色和蓝色的线段长度。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
We have a number line. Takahashi painted some parts of this line, as follows:
- First, he painted the part from to red.
- Next, he painted the part from to blue.
Find the length of the part of the line painted both red and blue.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the length of the part of the line painted both red and blue, as an integer.
Sample Input 1
0 3 1 5
Sample Output 1
2
The part from to is painted red, and the part from to is painted blue.
Thus, the part from to is painted both red and blue, and its length is .
Sample Input 2
0 1 4 5
Sample Output 2
0
No part is painted both red and blue.
Sample Input 3
0 3 3 7
Sample Output 3
0
If the part painted red and the part painted blue are adjacent to each other, the length of the part painted both red and blue is .
update @ 2024/3/10 11:02:59