結果

問題 No.752 mod数列
ユーザー treeone
提出日時 2018-11-09 23:56:06
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 201,464 KB
最終ジャッジ日時 2025-01-06 16:15:52
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define int long long
using namespace std;
int p, q;
map<int, int> dp;

int calc(int n){
    if(dp.count(n)) return dp[n];
    int q = p / n;
    int x = p / (q + 1) + 1;
    return dp[n] = (p % n + p % x) * (n - x + 1) / 2 + calc(x - 1);
}

signed main(){
    cin >> p >> q;
    dp[0] = 0;
    for(int i = 0; i < q; i++){
        int l, r;
        cin >> l >> r;
        cout << calc(r) - calc(l - 1) << endl;
    }
}
0