#A. B - K-th Common Divisor

    传统题 1000ms 256MiB

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:

AA BB KK

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

2024寒假入门组刷题营(五)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-2 13:30
结束于
2024-2-2 15:30
持续时间
2 小时
主持人
参赛人数
10