結果

問題 No.2882 Comeback
ユーザー HIcoderHIcoder
提出日時 2024-10-04 23:05:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 1,543 bytes
コンパイル時間 1,069 ms
コンパイル使用メモリ 119,792 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-04 23:05:33
合計ジャッジ時間 2,313 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 12 ms
5,248 KB
testcase_11 AC 11 ms
5,248 KB
testcase_12 AC 12 ms
5,248 KB
testcase_13 AC 13 ms
5,248 KB
testcase_14 AC 10 ms
5,248 KB
testcase_15 AC 13 ms
5,248 KB
testcase_16 AC 11 ms
5,248 KB
testcase_17 AC 12 ms
5,248 KB
testcase_18 AC 14 ms
5,248 KB
testcase_19 AC 12 ms
5,248 KB
testcase_20 AC 13 ms
5,248 KB
testcase_21 AC 13 ms
5,248 KB
testcase_22 AC 13 ms
5,248 KB
testcase_23 AC 13 ms
5,248 KB
testcase_24 AC 13 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
using ll = long long;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;
const int dy[]={0,1,0,-1};
const int dx[]={1,0,-1,0};

ll calc(ll n){
    //Σk=1~N [N/k]
    ll res=0;
    // vector<ll> val;
    // for(ll v=1;v*v<=n;v++){
    //     if(n%v==0){
    //         val.push_back(v);
    //         if(v*v!=n) val.push_back(n/v);
    //     }
    // }
    // sort(val.begin(),val.end());
    ll sqn = sqrt(n);

    ll right=n;
    for(ll t=1;t<=sqn;t++){
        ll left = n/(t+1);
        //k=(left,right]のとき n/k=t
        res+=t*(right-left);
        right=left;
    }
    
    for(ll t=1;t<=right;t++){
        res+=n/t;
    }

    return res;
}

ll calc_slow(ll n){
    ll res=0;
    for(ll i=1;i<=n;i++){
        res+=n/i;
    }
    return res;
}

ll solve(){
    ll A,B;
    cin>>A>>B;

    ll res=0;
    res+=-(B+calc(B-A-1)) - calc(A) + calc(B);
    res+=B;

    return res;

}

int main(){
    int T;
    cin>>T;

    // for(int i=100;i<=130;i++){
    //     cout<<"calc("<<i<<")="<<calc(i)<<endl;
    //     cout<<"calc_slow("<<i<<")="<<calc_slow(i)<<endl;
    // }

    vector<ll> ans(T);
    for(int t=0;t<T;t++){
        ans[t]=solve();
    }

    for(int t=0;t<T;t++){
        cout<<ans[t]<<endl;
    }
}
0