結果

問題 No.752 mod数列
ユーザー KTR216KTR216
提出日時 2018-11-09 23:29:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,448 KB
最終ジャッジ日時 2024-11-21 06:50:56
合計ジャッジ時間 65,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
16,000 KB
testcase_01 AC 36 ms
21,376 KB
testcase_02 WA -
testcase_03 AC 32 ms
21,248 KB
testcase_04 AC 30 ms
15,872 KB
testcase_05 AC 33 ms
21,120 KB
testcase_06 AC 32 ms
15,872 KB
testcase_07 AC 32 ms
21,248 KB
testcase_08 AC 33 ms
16,000 KB
testcase_09 AC 33 ms
17,828 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 31 ms
10,624 KB
testcase_32 AC 30 ms
10,624 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(p, r):
    ans = 0
    if r * r < p:
        for i in range(1, r + 1):
            ans = ans + p % i
        return ans
    if r > p:
        ans = (r - p) * p
    i = int(p / r)
    if i == 0:
        i = 1
        r = p
    s = p % r
    n = r - int(p / (i + 1))
    ans = ans + int((2 * s + i * (n - 1)) * n / 2)
    i = i + 1
    while i * i <= p:
        s = p % int(p / i)
        n = int(p / i) - int(p/ (i + 1))
        ans = ans + int((2 * s + i * (n - 1)) * n / 2)
        i = i + 1
    for i in range(1, p):
        if i * i >= p:
            break
        ans = ans + p % i
    return ans

P, Q = map(int, input().split())
for i in range(Q):
    L, R = map(int, input().split())
    print(solve(P, R) - solve(P, L - 1))
0