시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB37016814743.750%

문제

A game consists of putting beads in boxes. The rules of the game are too complex to describe here, but all you need to know is that keeping track of the number of beans in adjacent boxes are very important to the outcome of the game.

You are asked by a friend to write a program to help him win the game every time. At the start of a game, all boxes are empty.

입력

The first line of the input consists of a single number T, the number of games played. Each game start with a line describing B, P and Q, the number of boxes, put requests and query requests, respectively.

Then follows P + Q lines with either P i a, saying a beads are put in box number i, or Q i j, a query request for the number of beads in boxes i through j, inclusive.

  • 0 < T ≤ 100
  • 0 < B ≤ 100000
  • 0 < P ≤ 30000
  • 0 < Q ≤ 30000
  • 0 ≤ a ≤ 100
  • 0 < i ≤ j ≤ B
  • Note that boxes are 1-indexed.
  • This is an I/O-heavy problem. For Java programmers, this means that you should use BufferedReader for input reading (not Scanner). It is also beneficial to build all output in a StringBuilder before printing in a single print statement.

출력

For each query request, output the number of beads in boxes a through b, inclusive, that are in the boxes at this point of the game.

예제 입력 1

1
7 5 3
P 2 1
P 3 3
P 4 7
Q 1 4
P 7 6
Q 4 4
P 6 4
Q 1 7

예제 출력 1

11
7
21