結果

問題 No.2882 Comeback
ユーザー hiryuNhiryuN
提出日時 2024-09-08 12:58:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 123,104 KB
最終ジャッジ日時 2024-09-08 12:58:08
合計ジャッジ時間 5,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,824 KB
testcase_01 AC 40 ms
53,824 KB
testcase_02 AC 42 ms
54,132 KB
testcase_03 AC 39 ms
53,284 KB
testcase_04 AC 40 ms
53,328 KB
testcase_05 AC 85 ms
76,600 KB
testcase_06 AC 85 ms
76,500 KB
testcase_07 AC 94 ms
76,504 KB
testcase_08 AC 93 ms
75,020 KB
testcase_09 AC 87 ms
76,380 KB
testcase_10 AC 187 ms
91,452 KB
testcase_11 AC 176 ms
90,312 KB
testcase_12 AC 194 ms
94,180 KB
testcase_13 AC 196 ms
95,872 KB
testcase_14 AC 179 ms
88,804 KB
testcase_15 AC 224 ms
96,052 KB
testcase_16 AC 183 ms
92,984 KB
testcase_17 AC 180 ms
92,112 KB
testcase_18 AC 208 ms
97,896 KB
testcase_19 AC 197 ms
93,136 KB
testcase_20 AC 215 ms
119,132 KB
testcase_21 AC 208 ms
123,104 KB
testcase_22 AC 209 ms
117,152 KB
testcase_23 AC 209 ms
117,180 KB
testcase_24 AC 182 ms
122,164 KB
testcase_25 AC 39 ms
52,784 KB
testcase_26 AC 40 ms
52,792 KB
testcase_27 AC 40 ms
53,940 KB
testcase_28 AC 40 ms
52,944 KB
testcase_29 AC 40 ms
54,224 KB
testcase_30 AC 77 ms
75,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for _ in range(t):
    a,b=map(int,input().split())
    ra=int(a**(1/2))
    rb=int(b**(1/2))
    AA=[]
    for i in range(1,ra+1):
        AA.append(a//i)
    A=list(range(1,AA[-1]))
    A+=list(reversed(AA))+[b]+[-1]
    
    BB=[]
    for i in range(1,rb+1):
        BB.append(b//i)
    B=list(range(1,BB[-1]))
    B+=list(reversed(BB))+[-1]
    #print(*A)
    #print(*B)
    ap=0
    bp=0
    pre=0
    ans=0
    while True:
        if ap==len(A)-1 and bp==len(B)-1:
            break
        nex=min(A[ap],B[bp])
        ax=a%A[ap]
        bx=b%B[bp]
        ay=a//A[ap]
        by=b//B[bp]
        ax+=(A[ap]-nex)*ay
        bx+=(B[bp]-nex)*by
        
        div=nex-pre
        if ax>=bx and ay>=by:
            ans+=div
        elif ax<bx and ay<by:
            ans+=0
        elif ax>=bx and ay<by:
            ans+=min(div,(ax-bx)//(by-ay)+1)
            
        pre=nex
        if A[ap]==nex:
            ap+=1
        if B[bp]==nex:
            bp+=1
    print(ans)
    
0