結果
問題 | No.752 mod数列 |
ユーザー | beet |
提出日時 | 2018-11-09 22:13:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,123 bytes |
コンパイル時間 | 2,293 ms |
コンパイル使用メモリ | 202,604 KB |
実行使用メモリ | 49,404 KB |
最終ジャッジ日時 | 2024-05-01 04:54:32 |
合計ジャッジ時間 | 7,944 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
49,404 KB |
testcase_01 | AC | 66 ms
42,272 KB |
testcase_02 | AC | 64 ms
42,336 KB |
testcase_03 | AC | 63 ms
42,260 KB |
testcase_04 | AC | 64 ms
42,280 KB |
testcase_05 | AC | 63 ms
42,136 KB |
testcase_06 | AC | 64 ms
42,280 KB |
testcase_07 | AC | 64 ms
42,312 KB |
testcase_08 | AC | 64 ms
42,280 KB |
testcase_09 | AC | 64 ms
42,284 KB |
testcase_10 | AC | 163 ms
42,324 KB |
testcase_11 | AC | 84 ms
42,260 KB |
testcase_12 | AC | 129 ms
42,352 KB |
testcase_13 | AC | 103 ms
42,284 KB |
testcase_14 | AC | 165 ms
42,264 KB |
testcase_15 | AC | 85 ms
42,292 KB |
testcase_16 | AC | 89 ms
42,300 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
#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 = 5e6; 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,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)<<"\n"; } cout<<flush; return 0; }