結果

問題 No.752 mod数列
ユーザー beetbeet
提出日時 2018-11-09 22:33:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 1,025 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 202,940 KB
実行使用メモリ 159,544 KB
最終ジャッジ日時 2024-05-01 05:10:47
合計ジャッジ時間 12,844 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 244 ms
159,416 KB
testcase_01 AC 232 ms
159,360 KB
testcase_02 AC 237 ms
159,504 KB
testcase_03 AC 240 ms
159,524 KB
testcase_04 AC 238 ms
159,536 KB
testcase_05 AC 231 ms
159,508 KB
testcase_06 AC 240 ms
159,420 KB
testcase_07 AC 228 ms
159,460 KB
testcase_08 AC 239 ms
159,432 KB
testcase_09 AC 230 ms
159,492 KB
testcase_10 AC 236 ms
159,296 KB
testcase_11 AC 236 ms
159,500 KB
testcase_12 AC 242 ms
159,532 KB
testcase_13 AC 232 ms
159,492 KB
testcase_14 AC 229 ms
159,300 KB
testcase_15 AC 245 ms
159,480 KB
testcase_16 AC 252 ms
159,304 KB
testcase_17 AC 400 ms
159,452 KB
testcase_18 AC 254 ms
159,488 KB
testcase_19 AC 251 ms
159,496 KB
testcase_20 AC 261 ms
159,464 KB
testcase_21 AC 260 ms
159,532 KB
testcase_22 AC 262 ms
159,364 KB
testcase_23 AC 261 ms
159,436 KB
testcase_24 AC 262 ms
159,300 KB
testcase_25 AC 307 ms
159,476 KB
testcase_26 AC 353 ms
159,484 KB
testcase_27 AC 295 ms
159,500 KB
testcase_28 AC 360 ms
159,544 KB
testcase_29 AC 292 ms
159,448 KB
testcase_30 AC 367 ms
159,296 KB
testcase_31 AC 227 ms
159,488 KB
testcase_32 AC 225 ms
159,472 KB
testcase_33 AC 226 ms
159,536 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;}


struct FastIO{
  FastIO(){
    cin.tie(0);
    ios::sync_with_stdio(0);
  }
}fastio_beet;

//INSERT ABOVE HERE
signed main(){
  Int p,q;
  cin>>p>>q;
  
  const Int MAX = 2e7;
  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);
          res-=(p/a)*(a+b)*(b-a+1)/2;          
        };
      
      while(k<x){
        if(p/k==p/x){
          sub(k,x);
          break;
        }
        Int l=k+(p%k)/(p/k);
        sub(k,l);
        k=l+1;
      }
      return res;
    };
  
  for(Int i=0;i<q;i++){
    Int l,r;
    cin>>l>>r;
    cout<<calc(r)-calc(l-1)<<"\n";
  }
  cout<<flush;
  return 0;
}
0