4815: Cowslip Collections

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:2 通过:1

题目描述

F. Cowslip Collections
time limit per test
8 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output
In an attempt to make peace with the Mischievious Mess Makers, Bessie and Farmer John are planning to plant some flower gardens to complement the lush, grassy fields of Bovinia. As any good horticulturist knows, each garden they plant must have the exact same arrangement of flowers. Initially, Farmer John has n different species of flowers he can plant, with ai flowers of the i-th species.
On each of the next q days, Farmer John will receive a batch of flowers of a new species. On day j, he will receive cj flowers of the same species, but of a different species from those Farmer John already has.
Farmer John, knowing the right balance between extravagance and minimalism, wants exactly k species of flowers to be used. Furthermore, to reduce waste, each flower of the k species Farmer John chooses must be planted in some garden. And each of the gardens must be identical; that is to say that each of the k chosen species should have an equal number of flowers in each garden. As Farmer John is a proponent of national equality, he would like to create the greatest number of gardens possible.
After receiving flowers on each of these q days, Farmer John would like to know the sum, over all possible choices of k species, of the maximum number of gardens he could create. Since this could be a large number, you should output your result modulo 109+7.
Input
The first line of the input contains three integers n, k and q (1≤kn≤100000, 1≤q≤100000).
The i-th (1≤in) of the next n lines of the input contains an integer ai (1≤ai≤1000000), the number of flowers of species i Farmer John has initially.
The j-th (1≤jq) of the next q lines of the input contains an integer cj (1≤cj≤1000000), the number of flowers of a new species Farmer John receives on day j.
Output
After each of the q days, output the sum of the maximum possible number of gardens, where the sum is taken over all possible choices of k species, modulo 109+7.
Examples
Input
3 3 2
4
6
9
8
6
Output
5
16
Input
4 1 2
6
5
4
3
2
1
Output
20
21
Note
In the first sample case, after the first day Farmer John has (4,6,9,8) of each type of flower, and k=3.
Choosing (4,6,8) lets him make 2 gardens, each with (2,3,4) of each flower, respectively. Choosing (4,6,9), (4,9,8) and (6,9,8) each only let him make one garden, since there is no number of gardens that each species can be evenly split into. So the sum over all choices of k=3 flowers is 2+1+1+1=5.
After the second day, Farmer John has (4,6,9,8,6) of each flower. The sum over all choices is 1+2+2+1+1+2+2+3+1+1=16.
In the second sample case, k=1. With x flowers Farmer John can make x gardens. So the answers to the queries are 6+5+4+3+2=20 and 6+5+4+3+2+1=21.

输入样例 复制


输出样例 复制