你有N个整数,A1,A2,An。你需要处理两种操作。一种操作是在给定的区间内将某个给定的数字添加到每个数字上。另一种是求给定区间内的数字之和。
You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number in a given interval. The other is to ask for the sum of numbers in a given interval.
10 5
1 2 3 4 5 6 7 8 9 10
Q 4 4
Q 1 10
Q 2 4
C 3 6 3
Q 2 4
4
55
9
15