結果

問題 No.752 mod数列
ユーザー char134217728char134217728
提出日時 2019-02-22 07:47:52
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 2,460 bytes
コンパイル時間 1,928 ms
コンパイル使用メモリ 173,628 KB
実行使用メモリ 81,852 KB
最終ジャッジ日時 2023-08-14 15:57:24
合計ジャッジ時間 9,600 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
81,732 KB
testcase_01 AC 125 ms
81,612 KB
testcase_02 AC 125 ms
81,672 KB
testcase_03 AC 125 ms
81,756 KB
testcase_04 AC 128 ms
81,696 KB
testcase_05 AC 124 ms
81,628 KB
testcase_06 AC 125 ms
81,816 KB
testcase_07 AC 124 ms
81,660 KB
testcase_08 AC 127 ms
81,688 KB
testcase_09 AC 127 ms
81,620 KB
testcase_10 AC 125 ms
81,616 KB
testcase_11 AC 125 ms
81,620 KB
testcase_12 AC 129 ms
81,852 KB
testcase_13 AC 128 ms
81,664 KB
testcase_14 AC 126 ms
81,668 KB
testcase_15 AC 148 ms
81,632 KB
testcase_16 AC 149 ms
81,604 KB
testcase_17 AC 155 ms
81,608 KB
testcase_18 AC 152 ms
81,748 KB
testcase_19 AC 153 ms
81,712 KB
testcase_20 AC 164 ms
81,616 KB
testcase_21 AC 166 ms
81,700 KB
testcase_22 AC 161 ms
81,668 KB
testcase_23 AC 168 ms
81,644 KB
testcase_24 AC 173 ms
81,660 KB
testcase_25 AC 135 ms
81,632 KB
testcase_26 AC 153 ms
81,604 KB
testcase_27 AC 145 ms
81,728 KB
testcase_28 AC 151 ms
81,668 KB
testcase_29 AC 155 ms
81,848 KB
testcase_30 AC 156 ms
81,620 KB
testcase_31 AC 128 ms
81,664 KB
testcase_32 AC 127 ms
81,692 KB
testcase_33 AC 125 ms
81,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:62:1: 警告: ISO C++ では型の無い ‘main’ の宣言を禁止しています [-Wreturn-type]
   62 | main(){
      | ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
#include "unistd.h"
using namespace std;
#define WA cout<<"char134217728";exit(0)
#define RE throw
#define TLE sleep(1000)
#define FOR(i,a,b) for(int i=(a),i##formax=(b);i<i##formax;i++)
#define FORR(i,a,b) for(int i=(a),i##formax=(b);i>=i##formax;i--)
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define pcnt __builtin_popcount
#define sz(x) (int)(x).size()
#define maxs(x,y) x=max(x,y)
#define mins(x,y) x=min(x,y)
#define show(x) cout<<#x<<" = "<<x<<endl;
#define all(a) (a.begin()),(a.end())
#define each(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++)
#define perm(c) sort(all(c));for(bool c##p=1;c##p;c##p=next_permutation(all(c)))
#define uniq(v) sort(all(v));v.erase(unique(all(v)), v.end());
#define bit(n) (1LL<<(n))
#define randInt(l,r) (uniform_int_distribution<ll>(l,r)(rnd))
#define randDouble(l,r) (uniform_real_distribution<double>(l,r)(rnd))
#define dout(d) printf("%.12f\n",d)

typedef long long ll;
typedef __int128_t lll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
template<class T>using V=vector<T>;
template<class T>using VV=V<V<T>>;
template<class T,class Y>ostream& operator<<(ostream& o,const pair<T,Y>& p){return o<<"("<<p.fi<<", "<<p.se<<")";}
template<typename A,size_t N,typename T>void Fill(A (&array)[N],const T&v){fill((T*)array,(T*)(array+N),v);}
lll gcd(lll a,lll b,lll &x,lll &y){if(!b){x=1;y=0;return a;}lll d=gcd(b,a%b,y,x);y-=a/b*x;return d;}
ll gcd(ll a,ll b){lll x=0,y=0;return gcd(a,b,x,y);}
ll modInv(ll a,ll m){lll x,y;gcd(a,m,x,y);return (x%m+m)%m;}
ll modPow(lll a,lll n,ll m){if(!a)return a;lll p=1;for(;n>0;n>>=1,a=a*a%m)if(n&1)p=p*a%m;return(ll)p;}
const int IINF = 1e9+6;
const ll LINF = 1e18;
const int MOD = 1e9+7;
const double PI = acos(-1);
const double EPS = 1e-10;
static random_device rd;
static mt19937 rnd(rd());

const int N = 1e7+100;
ll p, q, S[N];
map<ll, ll> m;
ll f(ll a){
  if(a < N){
    return S[a];
  }else if(a >= p){
    return p*(a-p) + m[p];
  }else{
    auto itr = m.upper_bound(a);
    itr--;
    ll y = itr->fi, x = a;
    return itr->se + (x-y)*p-(x+y+1)*(x-y)/2*(p/y-1);
  }
}
main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cin >> p >> q;
  FOR(i, 1, N) S[i] = S[i-1]+p%i;
  m[p/100] = S[p/100];
  FORR(i, 99, 1){
    ll x = p/i, y = p/(i+1);
    m[p/i] = m[p/(i+1)] + (x-y)*p-(x+y+1)*(x-y)/2*i;
  }
  FOR(_, 0, q){
    int l, r;
    cin >> l >> r;
    printf("%lld\n", f(r)-f(l-1));
  }
}
0