結果
問題 | No.2452 Incline |
ユーザー | kakel-san |
提出日時 | 2023-09-01 22:34:08 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 355 ms / 2,000 ms |
コード長 | 1,161 bytes |
コンパイル時間 | 3,264 ms |
コンパイル使用メモリ | 106,880 KB |
実行使用メモリ | 27,520 KB |
最終ジャッジ日時 | 2024-06-11 04:30:51 |
合計ジャッジ時間 | 6,577 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
19,456 KB |
testcase_01 | AC | 31 ms
19,200 KB |
testcase_02 | AC | 32 ms
19,584 KB |
testcase_03 | AC | 355 ms
27,264 KB |
testcase_04 | AC | 313 ms
27,392 KB |
testcase_05 | AC | 295 ms
27,520 KB |
testcase_06 | AC | 314 ms
26,496 KB |
testcase_07 | AC | 282 ms
27,520 KB |
testcase_08 | AC | 256 ms
27,008 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static long[] NList => ReadLine().Split().Select(long.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var t = NN; var ans = new long[t]; for (var u = 0; u < t; ++u) { var c = NList; var (n, m, l, r) = (c[0], c[1], c[2], c[3]); ans[u] = Incline(n, m, l, r); } WriteLine(string.Join("\n", ans)); } static readonly int mod = 998_244_353; static long Incline(long n, long m, long l, long r) { var ans = F(n, m, r); if (l > 0) ans = (ans + mod - F(n, m, l - 1)) % mod; return ans; } static long F(long n, long m, long r) { return (m / (n - 1) % mod * (r % mod + 1) % mod + G(n, m, r)) % mod; } static long G(long n, long m, long r) { return (r / (n - 1) % mod * (m % (n - 1) + 1) % mod + Math.Min(r % (n - 1), m % (n - 1)) + 1) % mod; } }