B - K-th Common Divisor
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
B - K-th Common Divisor
Score : $200$ points
Problem Statement
You are given positive integers $A$ and $B$.
Find the $K$-th largest positive integer that divides both $A$ and $B$.
The input guarantees that there exists such a number.
Constraints
- All values in input are integers.
- $1 \leq A, B \leq 100$
- The $K$-th largest positive integer that divides both $A$ and $B$ exists.
- $K \geq 1$
Input
Input is given from Standard Input in the following format:
Output
Print the $K$-th largest positive integer that divides both $A$ and $B$.
8 12 2
2
Three positive integers divides both $8$ and $12$: $1, 2$ and $4$. Among them, the second largest is $2$.
100 50 4
5
1 1 1
1