| Felix Halim .NET | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
University experience
IOI 2002 Yong In, Korea
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
The aforementioned rules imply that there is exactly one representation in Panda Number for each number in decimal system. Unlike those Roman Numerals, pandas do recognize zero and negative number (which prove pandas are more advanced than our ancient Romans). To represent a negative number, they add one bamboo as a negative sign in front of the letters. Zero is a special number which doesn't fall into any rules above. To form a zero, pandas need five bamboos. The number of bamboos needed to form a number is the sum of required bamboos for each letter that appears in that number. For Example: 4108 = 4000+100+8 = (5000-1000)+100+5+1+1+1 = MECVIII (16 bamboos). 4109 = 4000+100+9 = (5000-1000)+100+(10-1) = MECIX (14 bamboos). -205 = [-], 200+5 = 100+100+ 5 = -CCV (9 bamboos) Given two numbers A and B, find out how many bamboos needed by panda to form (remember, they can't write) all number between A and B inclusively. InputThe input begins with a single positive integer T in a line indicating the number of test cases. Each case contains two numbers A and B (-25,000,000 <= A <= B <= 25,000,000) in a line.OutputFor each case, print in a single line the number of needed bamboos to form all numbers between A and B (inclusive).Sample Input7 -1 1 4018 4019 -25000000 25000000 -100 -57 -100 0 0 100 43 100 Sample Output8 28 2121000021 399 778 678 434 Problem Setter: Evan Leonardi Kembali ke pembahasan soal ini Lihat problem lain: |
||||||||||||||||||||||||||||||||||||||||||||||||||||||