베트남 리저널 2007년 C번 좀 도와주세요,ㅎ
C만 푼팀도 있는데 도저히 모르겠네요ㅜ
입력으로 자연수 a, b, k, s가 주어지는데
[a, b]에서 연속된 k개의 소수에서 처음과 끝의 차이가 s인 튜플의 개수를 출력하는 문제에요.
원문 :
C. Prime k-tuple
{p1,..., pk : p1 < p2 <...< pk}
Given an interval [a, b]
Input
The input file consists of several data sets. The first line of the input file contains the number of data sets which is a positive integer and is not bigger than 20. The following lines describe the data sets.
For each data set, there is only one line containing 4 numbers, a
Output
For each test case, write in one line the numbers of prime k
Sample Input
1 100 200 4 8
Sample Output
2

