COCI '19 Contest 1 #1 Trol

View as PDF

Submit solution


Points: 5 (partial)
Time limit: 1.0s
Memory limit: 512M

Problem types

Stjepan recently received his bachelor's degree in mathematics from the University of Zagreb. Naturally, his parents are very proud and have decided to give him all positive integers not greater than 260 as a gift. To keep them safe, he quickly stored all of those numbers in an array A, such that Ai=i. His jealous friend Marin decided to prank him by repeatedly replacing each element of A with the sum of its digits until all elements of A consisted of a single digit. For example, the initial value of 197th element of A was 197. Marin first changed that value to 1+9+7=17 and then changed its value again to 1+7=8. Stjepan is devastated and begs Marin to return his array to its initial state. Unfortunately, Marin won't do that until Stjepan correctly answers his Q queries: "What is the sum of numbers from lth to rth element of A?". Help Stjepan answer those queries!

Input

The first line contains an integer Q (1Q100) from the task description.

The next Q lines contain two integers li and ri (1liri260), the parameters of Marin's ith query.

Output

Output the answers to each of Marin's Q queries. Each answer should be printed in a separate line and their order should match the order of the queries as they are given in the input.

Scoring

In test cases worth a total of 20% of the points, for each query 1liri9 will hold.

In test cases worth a total of 60% of the points, for each query rili1000 will hold.

Sample Input 1

Copy
1
1 5

Sample Output 1

Copy
15

Sample Input 2

Copy
2
9 13
44 45

Sample Output 2

Copy
19
17

Explanation of Sample Output 2

1st queryA9=9, A10=1+0=1, A11=1+1=2, A12=1+2=3, A13=1+3=4.

A9+A10+A11+A12+A13=9+1+2+3+4=19.

2nd queryA44=4+4=8, A45=4+5=9. A44+A45=8+9=17.

Sample Input 3

Copy
1
1998 2018

Sample Output 3

Copy
102

Comments

There are no comments at the moment.