結果

問題 No.2452 Incline
ユーザー 👑 rin204rin204
提出日時 2023-09-01 21:31:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,196 KB
最終ジャッジ日時 2024-06-11 03:05:40
合計ジャッジ時間 4,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 45 ms
52,224 KB
testcase_02 AC 33 ms
52,480 KB
testcase_03 AC 422 ms
78,196 KB
testcase_04 AC 421 ms
77,312 KB
testcase_05 AC 436 ms
77,440 KB
testcase_06 AC 357 ms
77,056 KB
testcase_07 AC 407 ms
76,928 KB
testcase_08 AC 387 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def floor_sum(n, m, a, b):
    """
    return \\sum_{i=0}^{n-1} ((a*i+b)//m)
    """
    ret = 0
    while True:
        if a >= m:
            ret += (n - 1) * n // 2 * (a // m)
            a %= m
        if b >= m:
            ret += n * (b // m)
            b %= m
        y_max = (a * n + b) // m
        if y_max == 0:
            return ret
        x_max = y_max * m - b
        ret += (n - (x_max + a - 1) // a) * y_max
        n, m, a, b = y_max, a, m, -x_max % a


MOD = 998244353


def solve():
    n, m, l, r = map(int, input().split())
    ans = floor_sum(r + 1, n - 1, 1, 0)
    ans -= floor_sum(l, n - 1, 1, 0)
    l, r = m - r, m - l
    ans += floor_sum(r + 1, n - 1, 1, 0)
    ans -= floor_sum(l, n - 1, 1, 0)
    ans += r - l + 1
    print(ans % MOD)


for _ in range(int(input())):
    solve()
0