CF1350A.Orac and Factors

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Orac is studying number theory, and he is interested in the properties of divisors.

For two positive integers aa and bb , aa is a divisor of bb if and only if there exists an integer cc , such that ac=ba\cdot c=b .

For n2n \ge 2 , we will denote as f(n)f(n) the smallest positive divisor of nn , except 11 .

For example, f(7)=7,f(10)=2,f(35)=5f(7)=7,f(10)=2,f(35)=5 .

For the fixed integer nn , Orac decided to add f(n)f(n) to nn .

For example, if he had an integer n=5n=5 , the new value of nn will be equal to 1010 . And if he had an integer n=6n=6 , nn will be changed to 88 .

Orac loved it so much, so he decided to repeat this operation several times.

Now, for two positive integers nn and kk , Orac asked you to add f(n)f(n) to nn exactly kk times (note that nn will change after each operation, so f(n)f(n) may change too) and tell him the final value of nn .

For example, if Orac gives you n=5n=5 and k=2k=2 , at first you should add f(5)=5f(5)=5 to n=5n=5 , so your new value of nn will be equal to n=10n=10 , after that, you should add f(10)=2f(10)=2 to 1010 , so your new (and the final!) value of nn will be equal to 1212 .

Orac may ask you these queries many times.

输入格式

The first line of the input is a single integer t (1t100)t\ (1\le t\le 100) : the number of times that Orac will ask you.

Each of the next tt lines contains two positive integers n,k (2n106,1k109)n,k\ (2\le n\le 10^6, 1\le k\le 10^9) , corresponding to a query by Orac.

It is guaranteed that the total sum of nn is at most 10610^6 .

输出格式

Print tt lines, the ii -th of them should contain the final value of nn in the ii -th query by Orac.

输入输出样例

  • 输入#1

    3
    5 1
    8 2
    3 4

    输出#1

    10
    12
    12

说明/提示

In the first query, n=5n=5 and k=1k=1 . The divisors of 55 are 11 and 55 , the smallest one except 11 is 55 . Therefore, the only operation adds f(5)=5f(5)=5 to 55 , and the result is 1010 .

In the second query, n=8n=8 and k=2k=2 . The divisors of 88 are 1,2,4,81,2,4,8 , where the smallest one except 11 is 22 , then after one operation 88 turns into 8+(f(8)=2)=108+(f(8)=2)=10 . The divisors of 1010 are 1,2,5,101,2,5,10 , where the smallest one except 11 is 22 , therefore the answer is 10+(f(10)=2)=1210+(f(10)=2)=12 .

In the third query, nn is changed as follows: 36810123 \to 6 \to 8 \to 10 \to 12 .

首页