CF1389E.Calendar Ambiguity

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Berland year consists of mm months with dd days each. Months are numbered from 11 to mm . Berland week consists of ww days. The first day of the year is also the first day of the week. Note that the last week of the year might be shorter than ww days.

A pair (x,y)(x, y) such that x<yx < y is ambiguous if day xx of month yy is the same day of the week as day yy of month xx .

Count the number of ambiguous pairs.

输入格式

The first line contains a single integer tt ( 1t10001 \le t \le 1000 ) — the number of testcases.

Each of the next tt lines contains three integers mm , dd and ww ( 1m,d,w1091 \le m, d, w \le 10^9 ) — the number of months in a year, the number of days in a month and the number of days in a week.

输出格式

Print tt integers — for each testcase output the number of pairs (x,y)(x, y) such that x<yx < y and day xx of month yy is the same day of the week as day yy of month xx .

输入输出样例

  • 输入#1

    5
    6 7 4
    10 7 12
    12 30 7
    1 1 1
    3247834 10298779 625324

    输出#1

    6
    9
    5
    0
    116461800

说明/提示

Here are the pairs for the first test case:

首页