結果

問題 No.1856 Mex Sum 2
ユーザー colognecologne
提出日時 2022-02-28 17:46:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 904 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,776 KB
最終ジャッジ日時 2024-07-06 20:56:29
合計ジャッジ時間 47,805 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,608 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 54 ms
69,632 KB
testcase_03 AC 33 ms
52,352 KB
testcase_04 AC 33 ms
52,736 KB
testcase_05 AC 33 ms
52,608 KB
testcase_06 AC 33 ms
52,480 KB
testcase_07 AC 45 ms
62,592 KB
testcase_08 AC 32 ms
51,968 KB
testcase_09 AC 32 ms
52,480 KB
testcase_10 AC 34 ms
58,368 KB
testcase_11 AC 32 ms
52,480 KB
testcase_12 AC 33 ms
52,224 KB
testcase_13 AC 32 ms
51,968 KB
testcase_14 AC 32 ms
52,096 KB
testcase_15 AC 31 ms
52,224 KB
testcase_16 AC 36 ms
59,008 KB
testcase_17 AC 52 ms
67,968 KB
testcase_18 AC 50 ms
64,896 KB
testcase_19 AC 39 ms
58,752 KB
testcase_20 AC 40 ms
59,008 KB
testcase_21 AC 35 ms
57,856 KB
testcase_22 AC 52 ms
68,992 KB
testcase_23 AC 35 ms
57,856 KB
testcase_24 AC 48 ms
65,024 KB
testcase_25 AC 52 ms
67,968 KB
testcase_26 AC 33 ms
52,224 KB
testcase_27 AC 33 ms
52,096 KB
testcase_28 AC 35 ms
57,728 KB
testcase_29 AC 139 ms
76,172 KB
testcase_30 AC 87 ms
76,032 KB
testcase_31 AC 135 ms
76,160 KB
testcase_32 AC 231 ms
76,288 KB
testcase_33 AC 251 ms
76,404 KB
testcase_34 AC 138 ms
76,544 KB
testcase_35 AC 91 ms
76,288 KB
testcase_36 AC 71 ms
76,092 KB
testcase_37 AC 145 ms
76,416 KB
testcase_38 AC 67 ms
73,344 KB
testcase_39 AC 58 ms
69,632 KB
testcase_40 AC 52 ms
68,992 KB
testcase_41 AC 50 ms
67,968 KB
testcase_42 AC 1,842 ms
76,288 KB
testcase_43 AC 1,359 ms
76,288 KB
testcase_44 AC 1,658 ms
76,156 KB
testcase_45 AC 1,990 ms
76,472 KB
testcase_46 AC 1,573 ms
76,160 KB
testcase_47 AC 1,721 ms
76,032 KB
testcase_48 AC 1,933 ms
76,420 KB
testcase_49 AC 1,834 ms
76,160 KB
testcase_50 AC 1,284 ms
76,544 KB
testcase_51 AC 1,791 ms
76,288 KB
testcase_52 AC 1,748 ms
76,776 KB
testcase_53 AC 1,792 ms
76,288 KB
testcase_54 AC 1,796 ms
76,208 KB
testcase_55 AC 1,898 ms
76,160 KB
testcase_56 AC 1,762 ms
76,376 KB
testcase_57 AC 1,826 ms
76,416 KB
testcase_58 AC 2,012 ms
76,348 KB
testcase_59 AC 1,985 ms
76,284 KB
testcase_60 AC 1,965 ms
76,416 KB
testcase_61 AC 1,910 ms
76,288 KB
testcase_62 AC 1,777 ms
76,160 KB
testcase_63 AC 2,062 ms
76,288 KB
testcase_64 AC 1,776 ms
76,288 KB
testcase_65 AC 1,784 ms
76,160 KB
testcase_66 RE -
権限があれば一括ダウンロードができます

ソースコード

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] +
                ((M+1)-(i-1)) * (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 i in range(1, min(N, M+1)+1):
        mult = (M+1-i) * pow(M+1, -1, MOD) % MOD
        for mex in range(1, i+1):
            if mex == M+1:
                mult = 1
            else:
                mult = mult * (i-mex+1) * pow(M-mex+1, -1, MOD) % MOD
            ans = (ans + mex * mult * f[i]) % MOD

    print(ans)


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