307971: CF1444A. Division
Memory Limit:512 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Division
题意翻译
给定 $t$ 组询问,每组给两个数 $p_i$ 和 $q_i$,找出最大的整数 $x_i$,要求 $p_i$ 可被 $x_i$ 整除,且 $x_i$ 不可被 $q_i$ 整除。题目描述
Oleg's favorite subjects are History and Math, and his favorite branch of mathematics is division. To improve his division skills, Oleg came up with $ t $ pairs of integers $ p_i $ and $ q_i $ and for each pair decided to find the greatest integer $ x_i $ , such that: - $ p_i $ is divisible by $ x_i $ ; - $ x_i $ is not divisible by $ q_i $ . Oleg is really good at division and managed to find all the answers quickly, how about you?输入输出格式
输入格式
The first line contains an integer $ t $ ( $ 1 \le t \le 50 $ ) — the number of pairs. Each of the following $ t $ lines contains two integers $ p_i $ and $ q_i $ ( $ 1 \le p_i \le 10^{18} $ ; $ 2 \le q_i \le 10^{9} $ ) — the $ i $ -th pair of integers.
输出格式
Print $ t $ integers: the $ i $ -th integer is the largest $ x_i $ such that $ p_i $ is divisible by $ x_i $ , but $ x_i $ is not divisible by $ q_i $ . One can show that there is always at least one value of $ x_i $ satisfying the divisibility conditions for the given constraints.
输入输出样例
输入样例 #1
3
10 4
12 6
179 822
输出样例 #1
10
4
179