結果
| 問題 |
No.752 mod数列
|
| コンテスト | |
| ユーザー |
treeone
|
| 提出日時 | 2018-11-09 23:56:58 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 368 bytes |
| コンパイル時間 | 2,111 ms |
| コンパイル使用メモリ | 191,520 KB |
| 最終ジャッジ日時 | 2025-01-06 16:17:48 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | TLE * 3 |
| other | TLE * 31 |
ソースコード
#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