結果

問題 No.2882 Comeback
ユーザー tassei903tassei903
提出日時 2024-09-08 18:07:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,033 ms / 2,000 ms
コード長 1,472 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 315,716 KB
最終ジャッジ日時 2024-09-08 18:07:46
合計ジャッジ時間 16,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,356 KB
testcase_01 AC 42 ms
53,560 KB
testcase_02 AC 41 ms
53,664 KB
testcase_03 AC 41 ms
52,468 KB
testcase_04 AC 41 ms
53,024 KB
testcase_05 AC 92 ms
76,692 KB
testcase_06 AC 91 ms
77,296 KB
testcase_07 AC 121 ms
77,148 KB
testcase_08 AC 88 ms
76,936 KB
testcase_09 AC 86 ms
77,060 KB
testcase_10 AC 889 ms
301,756 KB
testcase_11 AC 804 ms
282,228 KB
testcase_12 AC 976 ms
305,372 KB
testcase_13 AC 968 ms
308,532 KB
testcase_14 AC 796 ms
282,376 KB
testcase_15 AC 980 ms
308,488 KB
testcase_16 AC 813 ms
270,956 KB
testcase_17 AC 914 ms
308,324 KB
testcase_18 AC 1,033 ms
315,716 KB
testcase_19 AC 897 ms
303,840 KB
testcase_20 AC 888 ms
309,280 KB
testcase_21 AC 898 ms
309,440 KB
testcase_22 AC 871 ms
308,480 KB
testcase_23 AC 896 ms
309,496 KB
testcase_24 AC 888 ms
310,016 KB
testcase_25 AC 39 ms
53,740 KB
testcase_26 AC 39 ms
52,504 KB
testcase_27 AC 39 ms
52,892 KB
testcase_28 AC 38 ms
53,028 KB
testcase_29 AC 38 ms
52,744 KB
testcase_30 AC 148 ms
100,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
######################################################################

def floor_decomposition(x): # k = floor(x / i) (L < i <= R) となる (k, L, R) のリストを返す
    res = []
    R = 10 ** 18
    while R:
        q = x // R
        L = x // (q + 1)
        res.append((q, L, R))
        R = L
    return res

def ceil_decomposition(x): # k = ceil(x / i) (L < i <= R) となる (k, L, R) のリストを返す
    res = []
    R = 10 ** 18
    while R:
        q = (x - 1) // R + 1
        L = (x - 1) // q
        res.append((q, L, R))
        R = L
    return res


for _ in range(ni()):
    a, b = na()
    FA = floor_decomposition(a)
    FB = floor_decomposition(b)
    C = ceil_decomposition(b - a)

    ZA = -1
    ZB = -1
    ZC = -1

    eve = []
    for k, L, R in FA:
        eve.append((L, k, 0))
    
    for k, L, R in FB:
        eve.append((L, k, 1))
    
    for k, L, R in C:
        eve.append((L, k, 2))
    

    eve.sort()
    X = 0
    ans = 0
    for L, k, t in eve:
        if ZB - ZA >= ZC:
            ans += L - X
        X = L
        if t == 0:
            ZA = k
        elif t == 1:
            ZB = k
        else:
            ZC = k
    print(ans)
0