結果

問題 No.1573 Divisor Function
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-14 14:46:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,215 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 86,928 KB
最終ジャッジ日時 2024-09-18 08:03:36
合計ジャッジ時間 5,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
66,816 KB
testcase_01 AC 64 ms
66,816 KB
testcase_02 AC 92 ms
86,588 KB
testcase_03 AC 65 ms
66,824 KB
testcase_04 AC 61 ms
66,688 KB
testcase_05 AC 63 ms
66,944 KB
testcase_06 AC 63 ms
67,056 KB
testcase_07 AC 63 ms
66,792 KB
testcase_08 AC 63 ms
67,200 KB
testcase_09 AC 64 ms
67,200 KB
testcase_10 AC 63 ms
67,236 KB
testcase_11 AC 64 ms
67,456 KB
testcase_12 AC 64 ms
67,328 KB
testcase_13 AC 64 ms
67,072 KB
testcase_14 AC 63 ms
67,200 KB
testcase_15 AC 65 ms
67,328 KB
testcase_16 AC 64 ms
67,712 KB
testcase_17 AC 63 ms
66,544 KB
testcase_18 AC 94 ms
86,188 KB
testcase_19 AC 92 ms
86,580 KB
testcase_20 AC 75 ms
76,288 KB
testcase_21 AC 95 ms
86,776 KB
testcase_22 AC 93 ms
85,916 KB
testcase_23 AC 89 ms
84,164 KB
testcase_24 AC 91 ms
85,272 KB
testcase_25 AC 100 ms
86,864 KB
testcase_26 AC 99 ms
86,224 KB
testcase_27 AC 97 ms
83,908 KB
testcase_28 AC 82 ms
75,708 KB
testcase_29 AC 97 ms
86,432 KB
testcase_30 AC 94 ms
85,604 KB
testcase_31 AC 92 ms
84,040 KB
testcase_32 AC 96 ms
86,572 KB
testcase_33 AC 94 ms
86,608 KB
testcase_34 AC 74 ms
73,344 KB
testcase_35 AC 74 ms
76,308 KB
testcase_36 AC 72 ms
72,940 KB
testcase_37 AC 92 ms
86,700 KB
testcase_38 AC 93 ms
86,856 KB
testcase_39 AC 95 ms
86,632 KB
testcase_40 AC 96 ms
86,644 KB
testcase_41 AC 95 ms
86,928 KB
testcase_42 AC 96 ms
86,808 KB
testcase_43 AC 94 ms
86,640 KB
testcase_44 AC 98 ms
86,300 KB
testcase_45 AC 96 ms
86,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple


def floorRange(n: int) -> List[Tuple[int, int, int]]:
    """
    将 [1,n] 内的数分成O(2*sqrt(n))段, 每段内的 n//i 相同

    Args:
        n (int): n>=1

    Returns:
        List[Tuple[int,int,int]]:
        每个元素为(left,right,div)
        表示 left <= i <= right 内的 n//i == div
    """
    res = []
    m = 1
    while m * m <= n:
        res.append((m, m, n // m))
        m += 1
    for i in range(m, 0, -1):
        left = n // (i + 1) + 1
        right = n // i
        if left <= right and res and res[-1][1] < left:
            res.append((left, right, n // left))
    return res


if __name__ == "__main__":
    # n = int(input())
    # print(floorRange(n))
    # [(1, 2, 9), (2, 3, 4), (3, 4, 3), (5, 10, 1)]

    # https://yukicoder.me/problems/no/1573
    MOD = 998244353
    n, m = map(int, input().split())
    res = 0
    for left, right, div in floorRange(n):
        right += 1
        lower = max(1, left)
        higher = min(right - 1, m)
        if lower > higher:
            break
        x = div * (div + 1) // 2 + div
        y = (lower + higher) * (higher - lower + 1) // 2
        res += x * y
        res %= MOD
    print(res)
0