結果

問題 No.2452 Incline
ユーザー detteiuudetteiuu
提出日時 2024-12-22 08:22:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-12-22 08:22:37
合計ジャッジ時間 5,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 526 ms
78,080 KB
testcase_04 AC 509 ms
76,544 KB
testcase_05 AC 513 ms
77,300 KB
testcase_06 AC 390 ms
76,544 KB
testcase_07 AC 459 ms
76,672 KB
testcase_08 AC 424 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://atcoder.jp/contests/practice2/submissions/58141876
def floor_sum(n: int, m: int, a: int, b: int) -> int:
    res = 0
    while 1:
        if a >= m or a < 0:
            res += n * (n - 1) * (a // m) // 2
            a %= m
        if b >= m or b < 0:
            res += n * (b // m)
            b %= m
        y_max = a * n + b
        if y_max < m:
            break
        n, b = divmod(y_max, m)
        a, m = m, a
    return res

MOD = 998244353

T = int(input())
for _ in range(T):
    N, M, L, R = map(int, input().split())
    bottom = floor_sum(R-L+1, N-1, 1, L)%MOD
    top = floor_sum(R-L+1, N-1, 1, M-R)%MOD
    print((bottom+top+(R-L+1))%MOD)
0