結果

問題 No.2105 Avoid MeX
ユーザー 👑 p-adicp-adic
提出日時 2023-06-22 18:17:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,590 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-06-30 00:58:05
合計ジャッジ時間 20,220 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 967 ms
96,256 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 578 ms
86,912 KB
testcase_07 AC 1,347 ms
103,296 KB
testcase_08 AC 875 ms
93,056 KB
testcase_09 AC 1,457 ms
106,496 KB
testcase_10 AC 57 ms
64,384 KB
testcase_11 AC 155 ms
77,568 KB
testcase_12 AC 331 ms
81,408 KB
testcase_13 AC 178 ms
77,824 KB
testcase_14 AC 1,193 ms
100,224 KB
testcase_15 AC 965 ms
96,768 KB
testcase_16 AC 1,560 ms
107,520 KB
testcase_17 AC 1,571 ms
107,776 KB
testcase_18 AC 1,590 ms
107,392 KB
testcase_19 AC 1,535 ms
108,032 KB
testcase_20 AC 1,437 ms
107,776 KB
testcase_21 AC 1,543 ms
107,392 KB
testcase_22 AC 1,437 ms
107,776 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C,X=map(int,input().split())
P=998244353
Y=X+1
D=[0]*Y
I=range(Y)
for i in I:
	if i:D[i]=[(D[i-1][x-1]*(C+i+1-x)+D[i-1][x]*x)*pow(C+i,-1,P)%P for x in I]
	else:D[i]=[1]+[0]*X
print([sum(D[max(0,X-C)][x]*(X-x)*pow(Y-x,-1,P)for x in I)%P,pow(C+1,-1,P)][X<1])
0