CF439E.Devu and Birthday Celebration

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Today is Devu's birthday. For celebrating the occasion, he bought nn sweets from the nearby market. He has invited his ff friends. He would like to distribute the sweets among them. As he is a nice guy and the occasion is great, he doesn't want any friend to be sad, so he would ensure to give at least one sweet to each friend.

He wants to celebrate it in a unique style, so he would like to ensure following condition for the distribution of sweets. Assume that he has distributed nn sweets to his friends such that ithi^{th} friend is given aia_{i} sweets. He wants to make sure that there should not be any positive integer x>1 , which divides every aia_{i} .

Please find the number of ways he can distribute sweets to his friends in the required way. Note that the order of distribution is important, for example [1, 2] and [2, 1] are distinct distributions. As the answer could be very large, output answer modulo 10000000071000000007 (109+7)(10^{9}+7) .

To make the problem more interesting, you are given qq queries. Each query contains an nn , ff pair. For each query please output the required number of ways modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入格式

The first line contains an integer qq representing the number of queries (1<=q<=105)(1<=q<=10^{5}) . Each of the next qq lines contains two space space-separated integers nn , ff (1<=f<=n<=105)(1<=f<=n<=10^{5}) .

输出格式

For each query, output a single integer in a line corresponding to the answer of each query.

输入输出样例

  • 输入#1

    5
    6 2
    7 2
    6 3
    6 4
    7 4
    

    输出#1

    2
    6
    9
    10
    20
    

说明/提示

For first query: n=6,f=2n=6,f=2 . Possible partitions are [1, 5] and [5, 1].

For second query: n=7,f=2n=7,f=2 . Possible partitions are [1, 6] and [2, 5] and [3, 4] and [4, 3] and [5, 3] and [6, 1]. So in total there are 6 possible ways of partitioning.

首页