#L9130. [USACO23FEB] Hungry Cow P
[USACO23FEB] Hungry Cow P
P9130 [USACO23FEB] Hungry Cow P
题目描述
Note: The time limit for this problem is 6s, three times the default. The memory limit for this problem is 512MB, twice the default.
Bessie is a hungry cow. Each day, for dinner, if there is a haybale in the barn, she will eat one haybale. Farmer John does not want Bessie to starve, so some days he sends a delivery of haybales, which arrive in the morning (before dinner). In particular, on day , Farmer John sends a delivery of haybales .
Process updates as follows: Given a pair , update the number of haybales arriving on day to . After each update, output the sum of all days on which Bessie eats haybales modulo .
输入格式
, followed by lines containing the updates.
输出格式
The sum after each update modulo .
输入输出样例 1
3
4 3
1 5
1 2
15
36
18
输入输出样例 2
9
1 89
30 7
101 26
1 24
5 1
60 4
5 10
101 0
1 200
4005
4656
7607
3482
3507
3753
4058
1107
24531
说明/提示
Explanation for Sample 1
Answers after each update:
SCORING
- Input :
- Inputs : Updates only increase the number of haybales arriving on day .
- Inputs 11-22: No additional constraints.