結果

問題 No.752 mod数列
ユーザー maspymaspy
提出日時 2020-01-22 21:36:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 964 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 53,848 KB
最終ジャッジ日時 2024-07-16 02:23:33
合計ジャッジ時間 25,163 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 482 ms
43,784 KB
testcase_01 AC 487 ms
43,780 KB
testcase_02 AC 477 ms
43,528 KB
testcase_03 AC 485 ms
43,652 KB
testcase_04 AC 475 ms
43,756 KB
testcase_05 AC 473 ms
43,372 KB
testcase_06 AC 489 ms
43,760 KB
testcase_07 AC 488 ms
43,508 KB
testcase_08 AC 490 ms
43,396 KB
testcase_09 AC 489 ms
43,536 KB
testcase_10 AC 491 ms
43,780 KB
testcase_11 AC 485 ms
43,656 KB
testcase_12 AC 496 ms
44,036 KB
testcase_13 AC 486 ms
43,624 KB
testcase_14 AC 482 ms
43,912 KB
testcase_15 AC 724 ms
52,084 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 747 ms
53,260 KB
testcase_19 AC 728 ms
52,644 KB
testcase_20 AC 777 ms
52,924 KB
testcase_21 AC 756 ms
52,736 KB
testcase_22 AC 767 ms
52,244 KB
testcase_23 AC 721 ms
52,972 KB
testcase_24 AC 723 ms
52,452 KB
testcase_25 AC 554 ms
44,640 KB
testcase_26 WA -
testcase_27 AC 611 ms
46,580 KB
testcase_28 WA -
testcase_29 AC 678 ms
53,284 KB
testcase_30 AC 690 ms
52,936 KB
testcase_31 AC 480 ms
43,632 KB
testcase_32 AC 471 ms
43,524 KB
testcase_33 AC 488 ms
43,760 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)//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