結果

問題 No.752 mod数列
ユーザー treeonetreeone
提出日時 2018-11-09 23:56:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 209,448 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-11-21 06:58:36
合計ジャッジ時間 9,967 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 22 ms
9,856 KB
testcase_11 AC 13 ms
6,816 KB
testcase_12 AC 19 ms
8,704 KB
testcase_13 AC 16 ms
7,424 KB
testcase_14 AC 23 ms
9,984 KB
testcase_15 AC 202 ms
6,820 KB
testcase_16 AC 295 ms
6,816 KB
testcase_17 AC 425 ms
18,432 KB
testcase_18 AC 292 ms
8,576 KB
testcase_19 AC 328 ms
10,368 KB
testcase_20 AC 426 ms
16,512 KB
testcase_21 AC 410 ms
16,384 KB
testcase_22 AC 422 ms
16,000 KB
testcase_23 AC 436 ms
16,768 KB
testcase_24 AC 423 ms
16,256 KB
testcase_25 AC 144 ms
14,720 KB
testcase_26 AC 364 ms
18,432 KB
testcase_27 AC 248 ms
15,232 KB
testcase_28 AC 331 ms
17,536 KB
testcase_29 AC 350 ms
14,336 KB
testcase_30 AC 500 ms
21,120 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 15 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

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