시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB69524677.966%

문제

You start with a sequence of consecutive integers. You want to group them into sets.

You are given the interval, and an integer P. Initially, each number in the interval is in its own set.

Then you consider each pair of integers in the interval. If the two integers share a prime factor which is at least P, then you merge the two sets to which the two integers belong.

How many different sets there will be at the end of this process?

입력

One line containing an integer C, the number of test cases in the input file.

For each test case, there will be one line containing three single-space-separated integers AB, and P.  A and B are the first and last integers in the interval, and P is the number as described above.

Limits

  • 1 <= C <= 10
  • 1 <= A <= B <= 1000
  • 2 <= P <= B
 

출력

For each test case, output one line containing the string "Case #X: Y" where X is the number of the test case, starting from 1, and Y is the number of sets.

예제 입력 1

2
10 20 5
10 20 3

예제 출력 1

Case #1: 9
Case #2: 7

출처

Contest > Google > Code Jam > Google Code Jam 2008 > Round 1B B1번

채점 및 기타 정보

  • 예제는 채점하지 않는다.