#ABC106D. AtCoder Express 2
AtCoder Express 2
题目描述
In Takahashi Kingdom, there is a east-west railroad and cities along it, numbered , , , ..., from west to east. A company called AtCoder Express possesses trains, and the train runs from City to City (it is possible that ). Takahashi the king is interested in the following matters:
- The number of the trains that runs strictly within the section from City to City , that is, the number of trains such that and .
Although he is genius, this is too much data to process by himself. Find the answer for each of these queries to help him.
在高桥王国,有一条东西走向的铁路,铁路沿线有 个城市,从西向东依次编号为 、 、 ......、 。一家名为_AtCoder Express_的公司拥有 列火车, 列火车从 市开往 市(有可能是 )。高桥国王对以下 事项感兴趣:
- 从城市 到城市 的区间内**严格运行的列车数,即 中 和 的列车数。
虽然他是个天才,但这些数据太多,他一个人根本无法处理。请找出每个 查询的答案来帮助他。
输入格式
输入内容按以下格式标准输入:
输出格式
打印 行。 -行应包含从城市 到城市 区间内**严格运行的列车编号。
样例 #1
样例输入 #1
样例输出 #1
样例 #2
样例输入 #2
样例输出 #2
样例 #3
样例输入 #3
样例输出 #3
说明
数据规模与约定
- 是介于 和 (含)之间的整数。
- 是介于 和 (含)之间的整数。
- 是介于 和 (含)之间的整数。
样例 解释
由于所有列车都在城市 至城市 区间内运行,因此唯一查询的答案为 。
样例 解释
第一个查询是从城市 到 的区间。在该区间内只有一趟列车严格运行:列车 。第二个查询是从城市 到 的区段。在该区段内只有一趟列车严格运行:列车 。