HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Sections > Arithmetic > problem:


50559 - Prime Factors of a Number

Guest
• Review clarifications (1)

Section problems

• 50388 - Number of Armstrong Num...
• 50359 - Mode of a Series
• 50440 - Call Center
• 50353 - Cube of the Largest number
• 50336 - Buying Carpets
• 50295 - Weighted Average
• 50296 - Total Discount Rate
• 50289 - Monthly Allowance
• 50559 - Prime Factors of a Nu...
• 50568 - Body Mass Index Calculator
• 50579 - Pentagonal Numbers
• 50584 - Total invoice amount
• 50634 - Perfect numbers
• 50635 - Decomposition into terms
• 50652 - Prime Factorization
• 50653 - Long Divide
• 50662 - Prime numbers (2)

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 4000/7000/7000/7000 ms. Memory limit 65000/65000/65000/65000 Kb.
Prepared by Ibrahim Mesecan.

kth Prime Factor of a Number

Prime factors of a number are the prime number which divides the number evenly and when you multiply all of them you will have the number itself. For example: 12= 2x2x3. 2, 2 and 3 are the prime factors of 12.

Write a program that is going to show kth prime factor of the given number (m).

Input specification
There is one number n in the first line where 1 ≤ n ≤ 30. Then, in the following n lines, you will be given two numbers m and k where 1 ≤ m ≤ 109 and 1 ≤ k < 15.

Output specification
Show n numbers which represent kth prime factors of the given numbers.
Note: Prime factors are assumend to be in ascending order. If k is larger than the number of prime factors of the given number, show the biggest prime factor. If the number is prime show the number itself.

Sample Input:
  5
  12 3
  7 1
  20 10
  20001 2
  20000001 3

Enter a number..:

Sample Output:
  3
  7
  5
  59
  952381

Output Explanation:

  • Hence, prime factors of 12 are 2, 2, 3, the result is 3
  • 7 is a prime number, the result is 7
  • Prime factors of 20 are 2, 2, and 5. Thus, k is larger than the number of factors. The result is 5
  • etc.


Для отправки решений необходимо выполнить вход.

www.contester.ru