結果
| 問題 | No.752 mod数列 |
| コンテスト | |
| ユーザー |
treeone
|
| 提出日時 | 2018-11-09 23:56:58 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 368 bytes |
| 記録 | |
| コンパイル時間 | 1,226 ms |
| コンパイル使用メモリ | 207,440 KB |
| 実行使用メモリ | 16,384 KB |
| 最終ジャッジ日時 | 2026-06-07 03:43:41 |
| 合計ジャッジ時間 | 8,281 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | TLE * 1 -- * 30 |
ソースコード
#include <bits/stdc++.h>
#define int long long
using namespace std;
int p, q;
int calc(int n){
int q = p / n;
int x = p / (q + 1) + 1;
return (p % n + p % x) * (n - x + 1) / 2 + calc(x - 1);
}
signed main(){
cin >> p >> q;
for(int i = 0; i < q; i++){
int l, r;
cin >> l >> r;
cout << calc(r) - calc(l - 1) << endl;
}
}
treeone