結果

問題 No.1552 Simple Dice Game
ユーザー kakel-sankakel-san
提出日時 2024-03-08 00:33:14
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 780 ms / 2,500 ms
コード長 2,085 bytes
コンパイル時間 15,552 ms
コンパイル使用メモリ 166,844 KB
実行使用メモリ 189,176 KB
最終ジャッジ日時 2024-09-29 18:44:20
合計ジャッジ時間 20,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
29,824 KB
testcase_01 AC 52 ms
30,180 KB
testcase_02 AC 54 ms
29,912 KB
testcase_03 AC 780 ms
34,432 KB
testcase_04 AC 54 ms
29,696 KB
testcase_05 AC 55 ms
30,048 KB
testcase_06 AC 54 ms
30,080 KB
testcase_07 AC 54 ms
30,068 KB
testcase_08 AC 54 ms
30,208 KB
testcase_09 AC 605 ms
33,664 KB
testcase_10 AC 699 ms
34,172 KB
testcase_11 AC 698 ms
33,916 KB
testcase_12 AC 244 ms
31,488 KB
testcase_13 AC 599 ms
33,664 KB
testcase_14 AC 369 ms
32,256 KB
testcase_15 AC 449 ms
32,640 KB
testcase_16 AC 114 ms
30,720 KB
testcase_17 AC 149 ms
30,716 KB
testcase_18 AC 560 ms
33,124 KB
testcase_19 AC 763 ms
34,432 KB
testcase_20 AC 770 ms
34,392 KB
testcase_21 AC 768 ms
34,432 KB
testcase_22 AC 764 ms
34,432 KB
testcase_23 AC 773 ms
189,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static long NN => long.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        WriteLine(Dice(n, m));
    }
    static long Dice(long n, long m)
    {
        var ans = 0L;
        var mod = 998_244_353;
        var rev2 = 499_122_177;
        var nc = n % mod;
        var exp = new long[m + 1];
        exp[1] = 1;
        for (var i = 2; i < exp.Length; ++i) exp[i] = Exp(i, n - 1, mod);
        for (var i = 1; i < m; ++i)
        {
            if (i == 1)
            {
                var tb = (exp[i + 1] - exp[i] + mod) % mod * nc % mod;
                var count = tb * 2 % mod;
                var add = (tb * (i + 2) % mod * (m - i) % mod + count % mod * (m - 2) % mod * (m - 1) % mod * rev2 % mod) * i % mod;
                ans = (ans + add) % mod;
            }
            else
            {
                var tb = (exp[i + 1] - exp[i] + mod) % mod * nc % mod;
                var mid = (exp[i + 1] - exp[i] * 2 + exp[i - 1] + mod + mod) % mod * nc % mod;
                var count = (tb * 2 + mid * (i - 1) % mod) % mod;
                var add = ((tb * (i + 2) % mod + (i * (i + 1L) % mod * rev2 % mod - 1 + mod) % mod * mid % mod) % mod * (m - i) % mod
                    + count % mod * (m - i - 1) % mod * (m - i) % mod * rev2 % mod) * i % mod;
                ans = (ans + add) % mod;
            }
        }
        return ans;
    }
    static long Exp(long n, long p, int mod)
    {
        long _n = n % mod;
        var _p = p;
        var result = 1L;
        if ((_p & 1) == 1) result *= _n;
        while (_p > 0)
        {
            _n = _n * _n % mod;
            _p >>= 1;
            if ((_p & 1) == 1) result = result * _n % mod;
        }
        return result;
    }
}
0