CF1925B.A Balanced Problemset?

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Jay managed to create a problem of difficulty xx and decided to make it the second problem for Codeforces Round #921.

But Yash fears that this problem will make the contest highly unbalanced, and the coordinator will reject it. So, he decided to break it up into a problemset of nn sub-problems such that the difficulties of all the sub-problems are a positive integer and their sum is equal to xx .

The coordinator, Aleksey, defines the balance of a problemset as the GCD of the difficulties of all sub-problems in the problemset.

Find the maximum balance that Yash can achieve if he chooses the difficulties of the sub-problems optimally.

输入格式

The first line of input contains a single integer tt ( 1t1031\leq t\leq 10^3 ) denoting the number of test cases.

Each test case contains a single line of input containing two integers xx ( 1x1081\leq x\leq 10^8 ) and nn ( 1nx1\leq n\leq x ).

输出格式

For each test case, print a single line containing a single integer denoting the maximum balance of the problemset Yash can achieve.

输入输出样例

  • 输入#1

    3
    10 3
    5 5
    420 69

    输出#1

    2
    1
    6

说明/提示

For the first test case, one possible way is to break up the problem of difficulty 1010 into a problemset having three problems of difficulties 44 , 22 and 44 respectively, giving a balance equal to 22 .

For the second test case, there is only one way to break up the problem of difficulty 55 into a problemset of 55 problems with each problem having a difficulty 11 giving a balance equal to 11 .

首页