結果

問題 No.2882 Comeback
ユーザー tikuwa_tikuwa_
提出日時 2024-08-12 11:34:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 117,004 KB
最終ジャッジ日時 2024-08-12 11:34:24
合計ジャッジ時間 5,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,528 KB
testcase_01 AC 39 ms
52,864 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 85 ms
76,800 KB
testcase_06 AC 82 ms
77,056 KB
testcase_07 AC 89 ms
76,928 KB
testcase_08 AC 96 ms
76,672 KB
testcase_09 AC 84 ms
76,800 KB
testcase_10 AC 225 ms
102,788 KB
testcase_11 AC 210 ms
102,480 KB
testcase_12 AC 242 ms
106,440 KB
testcase_13 AC 225 ms
99,808 KB
testcase_14 AC 208 ms
96,524 KB
testcase_15 AC 223 ms
100,796 KB
testcase_16 AC 209 ms
95,280 KB
testcase_17 AC 231 ms
102,232 KB
testcase_18 AC 251 ms
110,724 KB
testcase_19 AC 215 ms
100,840 KB
testcase_20 AC 211 ms
111,572 KB
testcase_21 AC 201 ms
111,380 KB
testcase_22 AC 217 ms
112,264 KB
testcase_23 AC 208 ms
111,500 KB
testcase_24 AC 186 ms
117,004 KB
testcase_25 AC 38 ms
52,608 KB
testcase_26 AC 36 ms
52,992 KB
testcase_27 AC 37 ms
52,992 KB
testcase_28 AC 37 ms
52,608 KB
testcase_29 AC 37 ms
52,480 KB
testcase_30 AC 89 ms
84,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    A,B=map(int,input().split())
    a,b=[],[]
    for i in range(int(B**0.5)+1,0,-1):
        a.append((A//(i+1)+1 , A//i , i))
        b.append((B//(i+1)+1 , B//i , i))
    a.append((A+1,2**60,0))

    start=b[0][0]
    ans=0
    for i in range(1,start):
        if A%i>=B%i : ans+=1
    l,r=start,start
    an,bn=0,0
    while True:
        if B<l : break
        while not a[an][0]<=l<=a[an][1] : an+=1
        while not b[bn][0]<=l<=b[bn][1] : bn+=1
        r=min(a[an][1],b[bn][1])
        p1,q1,p2,q2 = a[an][2],A%l,b[bn][2],B%l

        x=-1
        if q2<=q1 : ans+=r-l+1
        else:
            if p1==p2 : pass
            else:
                if (q2-q1)%(p2-p1)==0 : x=(q2-q1)//(p2-p1)+l
                else : x=(q2-q1)//(p2-p1)+l+1
                if r<x : pass
                else : ans+=r-x+1
        l=r+1
    print(ans)
0