結果
問題 | No.2452 Incline |
ユーザー | milanis48663220 |
提出日時 | 2023-09-01 22:19:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,502 ms / 2,000 ms |
コード長 | 673 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-11 04:11:31 |
合計ジャッジ時間 | 9,141 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 1,478 ms
10,752 KB |
testcase_04 | AC | 1,292 ms
10,752 KB |
testcase_05 | AC | 1,185 ms
10,752 KB |
testcase_06 | AC | 1,502 ms
10,752 KB |
testcase_07 | AC | 1,259 ms
10,752 KB |
testcase_08 | AC | 1,110 ms
10,880 KB |
ソースコード
def floor_sum(n, m, a, b): ans = 0 while True: if a >= m or a < 0: ans += n * (n - 1) * (a // m) // 2 a %= m if b >= m or b < 0: ans += n * (b // m) b %= m y_max = a * n + b if y_max < m: break n, b, m, a = y_max // m, y_max % m, a, m return ans mod = 998244353 def naive_fs(n, m, a, b): ans = 0 for x in range(0, n): ans += (a*x+b)//m return ans t = int(input()) for _ in range(t): n, m, l, r = map(int, input().split()) n -= 1 ans = floor_sum(m + 1, n, -1, r+m*n) - floor_sum(m + 1, n, -1, l - 1 + m*n) ans %= mod print(ans)