結果
| 問題 | 
                            No.897 compαctree
                             | 
                    
| コンテスト | |
| ユーザー | 
                             alexara1123
                         | 
                    
| 提出日時 | 2019-10-04 22:29:30 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 599 bytes | 
| コンパイル時間 | 174 ms | 
| コンパイル使用メモリ | 82,256 KB | 
| 実行使用メモリ | 89,048 KB | 
| 最終ジャッジ日時 | 2024-10-03 08:02:12 | 
| 合計ジャッジ時間 | 2,704 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 1 | 
| other | RE * 13 | 
ソースコード
from fractions import gcd
from datetime import date, timedelta
from heapq import*
import math
from collections import defaultdict, Counter,deque
import sys
from bisect import *
import itertools
import copy
sys.setrecursionlimit(10 ** 7)
MOD = 10 ** 9 + 7
def main():
    q = int(input())
    for i in range(q):
        n, k = map(int, input().split())
        if k == 1:
            print(n - 1)
            continue
        ans = 0
        kt = k
        while kt <= n:
            kt *= 2
            ans += 1
        print(ans)
        
    
        
if __name__ == '__main__':
    main()
            
            
            
        
            
alexara1123