結果

問題 No.752 mod数列
ユーザー Ameesh SethiAmeesh Sethi
提出日時 2024-07-05 21:58:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 988 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,584 KB
最終ジャッジ日時 2024-07-05 21:59:02
合計ジャッジ時間 10,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
82,048 KB
testcase_01 AC 93 ms
81,792 KB
testcase_02 AC 93 ms
82,048 KB
testcase_03 AC 94 ms
81,792 KB
testcase_04 AC 95 ms
81,920 KB
testcase_05 AC 95 ms
82,048 KB
testcase_06 AC 94 ms
82,048 KB
testcase_07 AC 93 ms
82,048 KB
testcase_08 AC 95 ms
82,176 KB
testcase_09 AC 95 ms
81,792 KB
testcase_10 AC 128 ms
92,544 KB
testcase_11 AC 110 ms
87,552 KB
testcase_12 AC 114 ms
89,088 KB
testcase_13 AC 114 ms
88,576 KB
testcase_14 AC 123 ms
92,544 KB
testcase_15 AC 154 ms
99,328 KB
testcase_16 AC 162 ms
99,328 KB
testcase_17 AC 988 ms
99,328 KB
testcase_18 AC 167 ms
99,328 KB
testcase_19 AC 173 ms
99,328 KB
testcase_20 AC 212 ms
99,328 KB
testcase_21 AC 220 ms
99,584 KB
testcase_22 AC 201 ms
98,944 KB
testcase_23 AC 190 ms
99,456 KB
testcase_24 AC 207 ms
99,584 KB
testcase_25 AC 151 ms
99,200 KB
testcase_26 AC 545 ms
99,328 KB
testcase_27 AC 342 ms
99,456 KB
testcase_28 AC 464 ms
99,328 KB
testcase_29 AC 423 ms
99,328 KB
testcase_30 AC 174 ms
99,200 KB
testcase_31 AC 94 ms
82,304 KB
testcase_32 AC 95 ms
82,048 KB
testcase_33 AC 97 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
def input(): return stdin.readline()[:-1]

B = int(1e6)
p, q = map(int, input().split())

rem = [0] + [p%i for i in range(1, B+1)]
for i in range(1, B + 1):
    rem[i] += rem[i - 1]
quo = [0] * (B + 1)
for i in range(B + 1):
    quo[i] = (p//(i + 1)) + 1

for _ in range(q):
    l, r = map(int, input().split())
    res = rem[min(r, B)] - rem[min(l - 1, B)]
    l = max(l, B + 1)
    if l <= r:
        s, e = p//l, p//r
        for t in range(s, e, -1):
            right = quo[t - 1] - 1
            res += p * (right - l + 1)
            res -= (t * (right - l + 1) * (right + l)) // 2
            l = quo[t - 1]
        res += p * (r - l + 1)
        res -= (e * (r - l + 1) * (l + r)) // 2
    print(res)
0