CF776G.Sherlock and the Encrypted Data

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Sherlock found a piece of encrypted data which he thinks will be useful to catch Moriarty. The encrypted data consists of two integer ll and rr . He noticed that these integers were in hexadecimal form.

He takes each of the integers from ll to rr , and performs the following operations:

  1. He lists the distinct digits present in the given number. For example: for 1014161014_{16} , he lists the digits as 1,0,41,0,4 .
  2. Then he sums respective powers of two for each digit listed in the step above. Like in the above example sum=21+20+24=1910sum=2^{1}+2^{0}+2^{4}=19_{10} .
  3. He changes the initial number by applying bitwise xor of the initial number and the sum. Example: . Note that xor is done in binary notation.

One more example: for integer 1e the sum is sum=21+214sum=2^{1}+2^{14} . Letters a, b, c, d, e, f denote hexadecimal digits 1010 , 1111 , 1212 , 1313 , 1414 , 1515 , respertively.

Sherlock wants to count the numbers in the range from ll to rr (both inclusive) which decrease on application of the above four steps. He wants you to answer his qq queries for different ll and rr .

输入格式

First line contains the integer qq ( 1<=q<=100001<=q<=10000 ).

Each of the next qq lines contain two hexadecimal integers ll and rr ( 0<=l<=r<16^{15} ).

The hexadecimal integers are written using digits from 00 to 99 and/or lowercase English letters a, b, c, d, e, f.

The hexadecimal integers do not contain extra leading zeros.

输出格式

Output qq lines, ii -th line contains answer to the ii -th query (in decimal notation).

输入输出样例

  • 输入#1

    1
    1014 1014
    

    输出#1

    1
    
  • 输入#2

    2
    1 1e
    1 f
    

    输出#2

    1
    0
    
  • 输入#3

    2
    1 abc
    d0e fe23
    

    输出#3

    412
    28464
    

说明/提示

For the second input,

1416=201014_{16}=20_{10}

sum=21+24=18sum=2^{1}+2^{4}=18

Thus, it reduces. And, we can verify that it is the only number in range 11 to 1e1e that reduces.

首页