結果

問題 No.1856 Mex Sum 2
ユーザー colognecologne
提出日時 2022-02-28 18:00:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 904 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-07-06 21:12:34
合計ジャッジ時間 10,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,952 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 40 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 32 ms
11,008 KB
testcase_17 AC 37 ms
11,008 KB
testcase_18 AC 35 ms
10,880 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 30 ms
11,008 KB
testcase_22 AC 38 ms
10,880 KB
testcase_23 AC 31 ms
11,008 KB
testcase_24 AC 34 ms
10,880 KB
testcase_25 AC 36 ms
10,880 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 459 ms
10,880 KB
testcase_30 AC 213 ms
11,008 KB
testcase_31 AC 437 ms
10,880 KB
testcase_32 AC 769 ms
10,880 KB
testcase_33 AC 899 ms
10,880 KB
testcase_34 AC 441 ms
10,880 KB
testcase_35 AC 212 ms
10,880 KB
testcase_36 AC 107 ms
10,880 KB
testcase_37 AC 421 ms
10,880 KB
testcase_38 AC 90 ms
10,880 KB
testcase_39 AC 39 ms
10,880 KB
testcase_40 AC 43 ms
11,008 KB
testcase_41 AC 44 ms
11,008 KB
testcase_42 TLE -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    MOD = 998244353

    N, M = map(int, input().split())

    f = [0] * (min(N, M+1) + 1)
    DP = [1] + [0] * min(N, M+1)
    C = 1
    for iter in range(1, N+1):
        C = C * (N-iter+1) * pow(iter, -1, MOD) % MOD
        mult = pow(M+1, N-iter, MOD) * C % MOD
        for i in range(min(N, M+1), -1, -1):
            DP[i] = (
                i * DP[i] + (DP[i-1] if i != 0 else 0)
            ) % MOD
        f = [(f[i] + mult * DP[i]) % MOD for i in range(min(N, M+1)+1)]

    ans = 0

    for mex in range(1, min(N, M+1)+1):
        mult = 1
        for j in range(1, mex):
            mult = mult * j % MOD
        for i in range(mex, min(N, M+1)+1):
            mult = mult * i % MOD
            if i != mex:
                mult = mult * (M-i+1) * pow(i-mex, -1, MOD) % MOD
            ans = (ans + mex * mult * f[i]) % MOD

    print(ans)


if __name__ == '__main__':
    main()
0