結果

問題 No.752 mod数列
ユーザー maspymaspy
提出日時 2020-01-22 21:48:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 792 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 55,404 KB
最終ジャッジ日時 2024-07-16 02:41:02
合計ジャッジ時間 23,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 478 ms
44,388 KB
testcase_01 AC 475 ms
44,252 KB
testcase_02 AC 483 ms
44,764 KB
testcase_03 AC 478 ms
44,128 KB
testcase_04 AC 482 ms
44,128 KB
testcase_05 AC 475 ms
44,260 KB
testcase_06 AC 485 ms
44,516 KB
testcase_07 AC 481 ms
44,120 KB
testcase_08 AC 479 ms
44,256 KB
testcase_09 AC 474 ms
44,388 KB
testcase_10 AC 485 ms
45,024 KB
testcase_11 AC 477 ms
44,132 KB
testcase_12 AC 483 ms
44,100 KB
testcase_13 AC 482 ms
44,520 KB
testcase_14 AC 490 ms
44,764 KB
testcase_15 AC 733 ms
53,084 KB
testcase_16 AC 645 ms
55,292 KB
testcase_17 AC 729 ms
55,404 KB
testcase_18 AC 745 ms
54,248 KB
testcase_19 AC 717 ms
54,368 KB
testcase_20 AC 772 ms
55,064 KB
testcase_21 AC 764 ms
54,808 KB
testcase_22 AC 792 ms
54,544 KB
testcase_23 AC 770 ms
54,632 KB
testcase_24 AC 729 ms
54,736 KB
testcase_25 AC 545 ms
47,072 KB
testcase_26 AC 678 ms
50,784 KB
testcase_27 AC 606 ms
48,992 KB
testcase_28 AC 663 ms
50,156 KB
testcase_29 AC 678 ms
54,468 KB
testcase_30 AC 683 ms
55,348 KB
testcase_31 AC 478 ms
44,388 KB
testcase_32 AC 481 ms
44,388 KB
testcase_33 AC 472 ms
44,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

P,Q = map(int, readline().split())
m = map(int,read().split())
LR = zip(m,m)

M = 30000
low_max = P//(M+1)
if low_max < 0:
    low_max = 0

lower = np.cumsum(P % np.arange(low_max + 1, dtype=np.int64))

left = P // np.arange(1, M+2, dtype=np.int64)
right = P // np.arange(0, M+1, dtype=np.int64)
S = (right - left) * (right + left + 1) // 2

upper = P * (right - left) - np.arange(M+1, dtype=np.int64) * S
upper[0] = 0
upper = upper[::-1].cumsum()[::-1]

lower = lower.tolist()
upper = upper.tolist()
upper.append(0)

def F(N):
    if N <= low_max:
        return lower[N]
    if N > P:
        return upper[0] + lower[-1] + (N - P) * P
    n = P // N
    x = lower[-1] + upper[n+1]  # 商 n+1 以上
    L = P // (n+1)
    return x + P * (N - L) - (N - L) * (N + L + 1) // 2 * n

for L,R in LR:
    print(F(R) - F(L-1))
0