Small and Large Integers

AtCoder
IDabc093_b
Time2000ms
Memory256MB
Difficulty
Print all the integers that satisfies the following in ascending order: * Among the integers between $A$ and $B$ (inclusive), it is either within the $K$ smallest integers or within the $K$ largest integers. ## Constraints * $1 \leq A \leq B \leq 10^9$ * $1 \leq K \leq 100$ * All values in input are integers. ## Input Input is given from Standard Input in the following format: $A$ $B$ $K$ [samples]
Samples
Input #1
3 8 2
Output #1
3
4
7
8

*   $3$ is the first smallest integer among the integers between $3$ and $8$.
*   $4$ is the second smallest integer among the integers between $3$ and $8$.
*   $7$ is the second largest integer among the integers between $3$ and $8$.
*   $8$ is the first largest integer among the integers between $3$ and $8$.
Input #2
4 8 3
Output #2
4
5
6
7
8
Input #3
2 9 100
Output #3
2
3
4
5
6
7
8
9
API Response (JSON)
{
  "problem": {
    "name": "Small and Large Integers",
    "description": {
      "content": "Print all the integers that satisfies the following in ascending order: *   Among the integers between $A$ and $B$ (inclusive), it is either within the $K$ smallest integers or within the $K$ largest",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc093_b"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Print all the integers that satisfies the following in ascending order:\n\n*   Among the integers between $A$ and $B$ (inclusive), it is either within the $K$ smallest integers or within the $K$ largest...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments