#ABC120B. K-th Common Divisor
K-th Common Divisor
题目描述
You are given positive integers and .
Find the -th largest positive integer that divides both and .
The input guarantees that there exists such a number.
给你正整数 和 。
求同时整除 和 的 -th 最大正整数。
输入保证存在这样一个数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印同时整除 和 的 -th 最大正整数。
样例 #1
样例输入 #1
8 12 2
样例输出 #1
2
样例 #2
样例输入 #2
100 50 4
样例输出 #2
5
样例 #3
样例输入 #3
1 1 1
样例输出 #3
1
说明
数据规模与约定
- 输入值均为整数
- 同时除以 和 的 -th 最大正整数存在。
样例 解释
三个正整数能同时整除 和 : 和 。其中,第二大的数是 。