QOJ.ac

QOJ

Time Limit: 3 s Memory Limit: 1024 MB Total points: 100

#3004. It's a Mod, Mod, Mod, Mod World

الإحصائيات

Problem Description

You are given multiple problems with three integers $p$, $q$, and $n$. Find $\sum^n_{i=1}[(pi) \bmod q]$. That is, the first $n$ multiples of $p$, modulo $q$, summed. Note that the overall sum has no modulus.

Input

Each input will begin with a line with a single integer $W$ ($1 \leq W \leq 10^5$), which is the number of cases you must solve.

Each of the next $W$ lines will contain three space-separated integers $p$, $q$ and $n$ ($1\leq p, q, n \leq 10^6$), which are the parameters of the problem as described above.

Output

Output $W$ lines, each with the answer for a given instance of the problem, in the order that they appear in the input.

Sample

Sample Input

3
2 7 2
1 4 5
3 8 10

Sample Output

6
7
37
About Issues

We understand that our problem archive is not perfect. If you find any issues with the problem, including the statement, scoring configuration, time/memory limits, test cases, etc.

You may use this form to submit an issue regarding the problem. A problem moderator will review your issue and proceed it properly.

STOP! Before you submit an issue, please READ the following guidelines:

  1. This is not a place to publish a discussion, editorial, or requests to debug your code. Your issue will only be visible by you and problem moderators. Other users will not be able to view or reply your issues.
  2. Do not submit duplicated issues. If you have already submitted one, please wait for an moderator to review it. Submitting multiple issues will not speed up the review process and might cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
  4. Be sure your issue is related to this problem. If you need to submit an issue regarding another problem, contest, category, etc., you should submit it to the corresponding page.

Active Issues 0

No issues in this category.

Closed/Resolved Issues 0

No issues in this category.