結果

問題 No.752 mod数列
ユーザー beetbeet
提出日時 2018-11-09 22:10:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,032 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 203,704 KB
実行使用メモリ 22,352 KB
最終ジャッジ日時 2024-11-21 06:01:45
合計ジャッジ時間 30,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
18,060 KB
testcase_01 AC 15 ms
22,144 KB
testcase_02 AC 15 ms
17,788 KB
testcase_03 AC 15 ms
22,352 KB
testcase_04 AC 15 ms
18,064 KB
testcase_05 AC 15 ms
22,036 KB
testcase_06 AC 15 ms
17,816 KB
testcase_07 AC 16 ms
22,092 KB
testcase_08 AC 14 ms
17,952 KB
testcase_09 AC 15 ms
21,984 KB
testcase_10 AC 462 ms
17,908 KB
testcase_11 AC 113 ms
22,148 KB
testcase_12 AC 317 ms
17,876 KB
testcase_13 AC 205 ms
11,148 KB
testcase_14 AC 484 ms
11,004 KB
testcase_15 AC 188 ms
10,968 KB
testcase_16 AC 200 ms
11,072 KB
testcase_17 TLE -
testcase_18 AC 205 ms
10,976 KB
testcase_19 AC 522 ms
10,968 KB
testcase_20 AC 652 ms
11,032 KB
testcase_21 AC 493 ms
11,028 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 430 ms
11,076 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 15 ms
11,064 KB
testcase_32 AC 15 ms
11,072 KB
testcase_33 AC 16 ms
22,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  Int p,q;
  cin>>p>>q;
  
  const Int MAX = 1e6;
  vector<Int> dp(MAX,0);
  for(Int i=1;i<MAX;i++) dp[i]=dp[i-1]+(p%i);  
  auto calc=
    [&](Int x)->Int{
      if(x<MAX) return dp[x];
      Int k=MAX,res=dp[k-1]+(x-k+1)*p;
      
      auto sub=
        [&](Int a,Int b){
          assert(p/a==p/b);
          Int c=p/a;
          res-=c*(a+b)*(b-a+1)/2;          
        };
      
      while(k<x){
        if(p/k==p/x){
          sub(k,x);
          break;
        }
        Int l=k,r=x;
        while(l+1<r){
          Int m=(l+r)>>1;
          if(p/k==p/m) l=m;
          else r=m;
        }
        sub(k,l);
        k=r;
      }
      return res;
    };
  
  for(Int i=0;i<q;i++){
    Int l,r;
    cin>>l>>r;
    cout<<calc(r)-calc(l-1)<<endl;
  }
  return 0;
}
0