結果

問題 No.2135 C5
ユーザー tassei903tassei903
提出日時 2022-11-26 08:56:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 1,869 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-02 13:22:04
合計ジャッジ時間 6,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 42 ms
52,992 KB
testcase_03 AC 245 ms
76,672 KB
testcase_04 AC 41 ms
52,864 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 45 ms
53,120 KB
testcase_09 AC 42 ms
52,352 KB
testcase_10 AC 41 ms
52,608 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 41 ms
52,352 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 39 ms
52,480 KB
testcase_15 AC 126 ms
76,416 KB
testcase_16 AC 118 ms
76,692 KB
testcase_17 AC 266 ms
76,672 KB
testcase_18 AC 112 ms
76,672 KB
testcase_19 AC 61 ms
66,688 KB
testcase_20 AC 78 ms
74,112 KB
testcase_21 AC 73 ms
72,192 KB
testcase_22 AC 95 ms
76,288 KB
testcase_23 AC 371 ms
76,800 KB
testcase_24 AC 149 ms
76,492 KB
testcase_25 AC 41 ms
51,968 KB
testcase_26 AC 40 ms
52,480 KB
testcase_27 AC 40 ms
52,352 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 428 ms
76,928 KB
testcase_30 AC 138 ms
76,800 KB
testcase_31 AC 249 ms
76,416 KB
testcase_32 AC 140 ms
76,544 KB
testcase_33 AC 39 ms
52,352 KB
testcase_34 AC 39 ms
52,480 KB
testcase_35 AC 40 ms
52,224 KB
testcase_36 AC 41 ms
52,736 KB
testcase_37 AC 41 ms
52,760 KB
testcase_38 AC 39 ms
52,224 KB
testcase_39 AC 43 ms
52,608 KB
testcase_40 AC 41 ms
52,736 KB
testcase_41 AC 43 ms
53,120 KB
testcase_42 AC 41 ms
52,480 KB
testcase_43 AC 39 ms
52,352 KB
testcase_44 AC 39 ms
51,968 KB
testcase_45 AC 298 ms
76,928 KB
testcase_46 AC 71 ms
68,224 KB
testcase_47 AC 158 ms
76,928 KB
testcase_48 AC 40 ms
52,736 KB
testcase_49 AC 531 ms
77,056 KB
testcase_50 AC 40 ms
52,352 KB
testcase_51 AC 42 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
mod = 998244353
nn = 400
fact = [1] * nn
for i in range(nn - 1):
    fact[i + 1] = fact[i] * (i + 1) % mod
invfact = [1] * nn
invfact[nn - 1] = pow(fact[nn - 1], mod - 2, mod)
for i in range(nn - 1)[::-1]:
    invfact[i] = invfact[i + 1] * (i + 1) % mod
 
def binom(x, y):
    if x < 0 or y < 0 or x - y < 0:
        return 0
    return fact[x] * invfact[y] % mod * invfact[x - y] % mod

n,m = na()
m = n*(n-1)//2 - m
if m > n:
    print(0)
    exit()
mod = 998244353

cycle = [0]*nn
for i in range(3,nn):
    cycle[i] = fact[i-1]*pow(2,mod-2,mod)%mod
cycle[2] = 1
path = [0]*nn
for i in range(2,nn):
    path[i] = fact[i]*pow(2,mod-2,mod)%mod
path[1] = 1
dp = [[0 for j in range(m+1)]for i in range(n+1)]

dp[0][0] = 1
for j in range(m+1):
    for i in range(n+1):
        for k in range(5,n+1):
            ni = i + k
            nj = j + k
            if ni > n or nj > m:
                break
            #print(binom(n-i-1, k-1),cycle[k])
            """if ni == 5 and nj == 4:
                print(i, j, k, dp[i][j] * binom(n-i-1, k-1) % mod * cycle[k] % mod)"""
            dp[ni][nj] += dp[i][j] * binom(n-i-1, k-1) % mod * cycle[k] % mod
            dp[ni][nj] %= mod
        for k in range(1,n+1):
            ni = i + k
            nj = j + k - 1
            if ni > n or nj > m:
                break
            #print(binom(n-i-1, k-1),path[k])
            dp[ni][nj] += dp[i][j] * binom(n-i-1, k-1) % mod * path[k] % mod
            dp[ni][nj] %= mod
        #print(dp)
ans = dp[-1][-1]

print(ans)
0