結果

問題 No.2882 Comeback
ユーザー karinohitokarinohito
提出日時 2024-09-08 13:54:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 209,452 KB
実行使用メモリ 8,884 KB
最終ジャッジ日時 2024-09-08 13:54:43
合計ジャッジ時間 5,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 138 ms
8,348 KB
testcase_11 AC 123 ms
8,120 KB
testcase_12 AC 152 ms
8,636 KB
testcase_13 AC 150 ms
8,764 KB
testcase_14 AC 121 ms
8,272 KB
testcase_15 AC 149 ms
8,616 KB
testcase_16 AC 137 ms
8,512 KB
testcase_17 AC 132 ms
7,956 KB
testcase_18 AC 171 ms
8,468 KB
testcase_19 AC 145 ms
8,288 KB
testcase_20 AC 190 ms
8,884 KB
testcase_21 AC 192 ms
8,720 KB
testcase_22 AC 189 ms
8,808 KB
testcase_23 AC 195 ms
8,728 KB
testcase_24 AC 191 ms
7,144 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 26 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

void solve(){
    ll A,B;
    cin>>A>>B;
    set<ll> S;
    S.insert(A+1);
    S.insert(B+1);
    ll d=1;
    while(d<=B){
        ll L=B/d;
        ll R=B/(d+1);
        S.insert(R+1);
        if(R==0)break;
        d=B/R;
    }
    d=1;
    while(d<=A){
        ll L=A/d;
        ll R=A/(d+1);
        S.insert(R+1);
        if(R==0)break;
        d=A/R;
    }
    vector<ll> D;
    for(int s:S)D.push_back(s);
    ll dn=D.size();
    ll an=0;
    for(int i=0;i<dn-1;i++){
        ll f=B/D[i]-A/D[i];
        ll res=0;
        if(f==0){
            // res=D[i+1]-D[i];
        }
        else res=max(D[i+1]-max(D[i],(B-A+f-1)/f),0ll);
        an+=res;
    }
    cout<<an<<endl;;
}

int main(){
   ll T;
   cin>>T;
   while(T--)solve();
}
0