#ABC143A. Curtain
Curtain
题目描述
The window of Takahashi's room has a width of . There are two curtains hung over the window, each of which has a horizontal length of . (Vertically, the curtains are long enough to cover the whole window.)
We will close the window so as to minimize the total horizontal length of the uncovered part of the window. Find the total horizontal length of the uncovered parts of the window then.
高桥房间的窗户宽为 。窗户上挂着两幅窗帘,每幅窗帘的水平长度为 。(垂直方向上,窗帘的长度足以遮住整个窗户)。
我们将关闭窗户,使窗户未遮挡部分的水平总长度最小。求窗户无遮挡部分的水平总长度。
输入格式
输入内容按以下格式标准输入:
输出格式
打印窗口未覆盖部分的水平总长度。
样例 #1
样例输入 #1
12 4
样例输出 #1
4
样例 #2
样例输入 #2
20 15
样例输出 #2
0
样例 #3
样例输入 #3
20 30
样例输出 #3
0
说明
数据规模与约定
- 和 都是整数。
样例 解释
例如,我们有一扇水平长度为 的窗户,两扇长度分别为 的窗帘遮住了窗户的两端。未遮挡部分的水平长度为 。
样例 解释
如果窗口被完全覆盖,则打印 。
样例 解释
每个窗帘都可能比窗口长。