ORIGIN

AtCoder-5037 Consecutive Integers

ACM 1 mins169 words

Consecutive Integers

Problem Statement

Snuke has N integers: $1,2,\cdots N $. He will choose K of them and give those to Takahashi.

How many ways are there to choose K consecutive integers?

Constraints

  • All values in input are integers.
  • 1≤KN≤50

Input

Input is given from Standard Input in the following format:

1
N K

Output

Print the answer.

Sample Input 1

1
3 2

Sample Output 1

1
2

There are two ways to choose two consecutive integers: (1,2) and (2,3).

Sample Input 2

1
13 3

Sample Output 2

1
11

Analysis

This is an very easy problem. If you have three numbers $1, 2, 3$and want the length of the consecutive subsequence be two, the answer is $3-2 +1$, because you can choose $1, 2$ or $1, 3$.

Code

1
2
3
4
5
6
7
8
9
10
#include<bits/stdc++.h>

using namespace std;

int main(){
int n, k;
cin >> n >> k;
cout << n - k + 1 << endl;
return 0;
}
TOP
COMMENT
  • ABOUT
  • |
o_oyao
  The Jigsaw puzzle is incomplete with even one missing piece. And I want to be the last piece to make the puzzle complete.
Like my post?
Default QR Code
made with ❤️ by o_oyao
©o_oyao 2019-2024

|