結果

問題 No.1856 Mex Sum 2
ユーザー colognecologne
提出日時 2022-02-28 17:04:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 699 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 82,756 KB
最終ジャッジ日時 2024-07-06 20:12:05
合計ジャッジ時間 6,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,964 KB
testcase_01 AC 34 ms
52,468 KB
testcase_02 AC 68 ms
75,668 KB
testcase_03 AC 33 ms
52,136 KB
testcase_04 AC 40 ms
60,816 KB
testcase_05 AC 40 ms
62,336 KB
testcase_06 AC 39 ms
59,776 KB
testcase_07 AC 43 ms
63,032 KB
testcase_08 AC 33 ms
52,144 KB
testcase_09 AC 37 ms
60,120 KB
testcase_10 AC 41 ms
63,212 KB
testcase_11 AC 37 ms
58,904 KB
testcase_12 AC 34 ms
52,824 KB
testcase_13 AC 32 ms
53,128 KB
testcase_14 AC 32 ms
52,532 KB
testcase_15 AC 33 ms
53,364 KB
testcase_16 AC 39 ms
61,588 KB
testcase_17 AC 50 ms
64,800 KB
testcase_18 AC 46 ms
63,332 KB
testcase_19 AC 41 ms
61,664 KB
testcase_20 AC 41 ms
61,500 KB
testcase_21 AC 32 ms
53,336 KB
testcase_22 AC 47 ms
64,180 KB
testcase_23 AC 31 ms
53,364 KB
testcase_24 AC 44 ms
63,332 KB
testcase_25 AC 50 ms
66,192 KB
testcase_26 AC 33 ms
53,368 KB
testcase_27 AC 32 ms
52,528 KB
testcase_28 AC 32 ms
53,816 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
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] * (N+1)
    for mex in range(1, min(N, M+1)+1):
        DP = [1] + [0] * mex
        for i in range(1, N+1):
            NDP = [0] * (mex + 1)
            for j in range(mex+1):
                NDP[j] = (NDP[j] + ((M+1) - (mex-j)) * DP[j]) % MOD
                if mex != j:
                    NDP[j+1] = (NDP[j+1] + (mex-j) * DP[j]) % MOD
            DP = NDP
            f[i] = (f[i] + DP[-1]) % MOD

    ans = 0
    C = 1
    for i in range(1, N+1):
        C = C * (N-i+1) * pow(i, -1, MOD) % MOD
        ans = (ans + pow(M+1, N-i, MOD) * C * f[i]) % MOD

    print(ans)


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