시간 제한메모리 제한제출정답맞힌 사람정답 비율
15 초 (추가 시간 없음) 1024 MB (추가 메모리 없음)130423228.070%

문제

Ada has bought a secret present for her friend John. In order to open the present, Ada wants John to crack a secret code. She decides to give him a hint to make things simple for him. She tells him that the secret code is a number that can be formed by taking the product of two consecutive prime numbers, such that it is the largest number that is smaller than or equal to $Z$. Given the value of $Z$, help John to determine the secret code.

Formally, let the order of prime numbers 2, 3, 5, 7, 11, ... be denoted by $p_1$, $p_2$, $p_3$, $p_4$, $p_5$, ... and so on. Consider $R_i$ to be the product of two consecutive primes $p_i$ and $p_{i+1}$. The secret code is the largest $R_j$ such that $R_j \le Z$.

입력

The first line of the input gives the number of test cases, $T$. $T$ lines follow.

Each line contains a single integer $Z$, representing the number provided by Ada as part of the hint.

출력

For each test case, output one line containing Case #x: y, where $x$ is the test case number (starting from 1) and $y$ is the secret code - the largest number less than or equal to $Z$ that is the product of two consecutive prime numbers.

제한

  • $1 \le T\le 100$.

Test Set 1 (7점)

  • $6 \le Z \le 2021$.

Test Set 2 (9점)

  • $6 \le Z \le 10^9$.

Test Set 3 (14점)

  • $6 \le Z \le 10^{18}$.

예제 입력 1

2
2021
2020

예제 출력 1

Case #1: 2021
Case #2: 1763

힌트

For Sample Case #1, the secret code is 2021 because it is exactly the product of consecutive primes 43 and 47.

For Sample Case #2, the secret code is 1763 because the product of 41 and 43 is 1763 which is smaller than 2020, but the product of 43 and 47 exceeds the given value of 2020.

채점 및 기타 정보

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