B - Small and Large Integers Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 200200

問題文

以下を満たす整数をすべて昇順に出力してください。

  • AA 以上 BB 以下の整数の中で、小さい方から KK 番目以内であるか、大きい方から KK 番目以内である

制約

  • 1AB1091 \leq A \leq B \leq 10^9
  • 1K1001 \leq K \leq 100
  • 入力はすべて整数である

入力

入力は以下の形式で標準入力から与えられる。

AA BB KK

出力

上の条件を満たす整数をすべて昇順に出力せよ。


入力例 1Copy

Copy
3 8 2

出力例 1Copy

Copy
3
4
7
8
  • 3333 以上 88 以下の整数の中で小さい方から 11 番目です。
  • 4433 以上 88 以下の整数の中で小さい方から 22 番目です。
  • 7733 以上 88 以下の整数の中で大さい方から 22 番目です。
  • 8833 以上 88 以下の整数の中で大さい方から 11 番目です。

入力例 2Copy

Copy
4 8 3

出力例 2Copy

Copy
4
5
6
7
8

入力例 3Copy

Copy
2 9 100

出力例 3Copy

Copy
2
3
4
5
6
7
8
9

Score : 200200 points

Problem Statement

Print all the integers that satisfies the following in ascending order:

  • Among the integers between AA and BB (inclusive), it is either within the KK smallest integers or within the KK largest integers.

Constraints

  • 1AB1091 \leq A \leq B \leq 10^9
  • 1K1001 \leq K \leq 100
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA BB KK

Output

Print all the integers that satisfies the condition above in ascending order.


Sample Input 1Copy

Copy
3 8 2

Sample Output 1Copy

Copy
3
4
7
8
  • 33 is the first smallest integer among the integers between 33 and 88.
  • 44 is the second smallest integer among the integers between 33 and 88.
  • 77 is the second largest integer among the integers between 33 and 88.
  • 88 is the first largest integer among the integers between 33 and 88.

Sample Input 2Copy

Copy
4 8 3

Sample Output 2Copy

Copy
4
5
6
7
8

Sample Input 3Copy

Copy
2 9 100

Sample Output 3Copy

Copy
2
3
4
5
6
7
8
9


2025-04-18 (Fri)
01:59:45 +00:00