結果
| 問題 | No.752 mod数列 |
| コンテスト | |
| ユーザー |
treeone
|
| 提出日時 | 2018-11-09 23:56:06 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 302 ms / 2,000 ms |
| コード長 | 443 bytes |
| 記録 | |
| コンパイル時間 | 1,374 ms |
| コンパイル使用メモリ | 218,652 KB |
| 実行使用メモリ | 21,248 KB |
| 最終ジャッジ日時 | 2026-06-07 03:43:08 |
| 合計ジャッジ時間 | 6,643 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 31 |
ソースコード
#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;
}
}
treeone