CF1796C.Maximum Set

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A set of positive integers SS is called beautiful if, for every two integers xx and yy from this set, either xx divides yy or yy divides xx (or both).

You are given two integers ll and rr . Consider all beautiful sets consisting of integers not less than ll and not greater than rr . You have to print two numbers:

  • the maximum possible size of a beautiful set where all elements are from ll to rr ;
  • the number of beautiful sets consisting of integers from ll to rr with the maximum possible size.

Since the second number can be very large, print it modulo 998244353998244353 .

输入格式

The first line contains one integer tt ( 1t21041 \le t \le 2 \cdot 10^4 ) — the number of test cases.

Each test case consists of one line containing two integers ll and rr ( 1lr1061 \le l \le r \le 10^6 ).

输出格式

For each test case, print two integers — the maximum possible size of a beautiful set consisting of integers from ll to rr , and the number of such sets with maximum possible size. Since the second number can be very large, print it modulo 998244353998244353 .

输入输出样例

  • 输入#1

    4
    3 11
    13 37
    1 22
    4 100

    输出#1

    2 4
    2 6
    5 1
    5 7

说明/提示

In the first test case, the maximum possible size of a beautiful set with integers from 33 to 1111 is 22 . There are 44 such sets which have the maximum possible size:

  • {3,6}\{ 3, 6 \} ;
  • {3,9}\{ 3, 9 \} ;
  • {4,8}\{ 4, 8 \} ;
  • {5,10}\{ 5, 10 \} .
首页