CF1023B.Pair of Toys

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Tanechka is shopping in the toy shop. There are exactly nn toys in the shop for sale, the cost of the ii -th toy is ii burles. She wants to choose two toys in such a way that their total cost is kk burles. How many ways to do that does she have?

Each toy appears in the shop exactly once. Pairs (a,b)(a, b) and (b,a)(b, a) are considered equal. Pairs (a,b)(a, b) , where a=ba=b , are not allowed.

输入格式

The first line of the input contains two integers nn , kk ( 1n,k10141 \le n, k \le 10^{14} ) — the number of toys and the expected total cost of the pair of toys.

输出格式

Print the number of ways to choose the pair of toys satisfying the condition above. Print 0, if Tanechka can choose no pair of toys in such a way that their total cost is kk burles.

输入输出样例

  • 输入#1

    8 5
    

    输出#1

    2
    
  • 输入#2

    8 15
    

    输出#2

    1
    
  • 输入#3

    7 20
    

    输出#3

    0
    
  • 输入#4

    1000000000000 1000000000001
    

    输出#4

    500000000000
    

说明/提示

In the first example Tanechka can choose the pair of toys ( 1,41, 4 ) or the pair of toys ( 2,32, 3 ).

In the second example Tanechka can choose only the pair of toys ( 7,87, 8 ).

In the third example choosing any pair of toys will lead to the total cost less than 2020 . So the answer is 0.

In the fourth example she can choose the following pairs: (1,1000000000000)(1, 1000000000000) , (2,999999999999)(2, 999999999999) , (3,999999999998)(3, 999999999998) , ..., (500000000000,500000000001)(500000000000, 500000000001) . The number of such pairs is exactly 500000000000500000000000 .

首页