結果

問題 No.2511 Mountain Sequence
ユーザー titiatitia
提出日時 2023-11-19 03:20:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 674 ms / 2,000 ms
コード長 1,242 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 166,400 KB
最終ジャッジ日時 2024-09-26 06:14:19
合計ジャッジ時間 16,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
145,536 KB
testcase_01 AC 97 ms
145,536 KB
testcase_02 AC 471 ms
159,360 KB
testcase_03 AC 155 ms
150,912 KB
testcase_04 AC 260 ms
161,792 KB
testcase_05 AC 273 ms
164,608 KB
testcase_06 AC 455 ms
159,792 KB
testcase_07 AC 419 ms
161,664 KB
testcase_08 AC 186 ms
162,580 KB
testcase_09 AC 143 ms
151,552 KB
testcase_10 AC 492 ms
161,792 KB
testcase_11 AC 614 ms
163,072 KB
testcase_12 AC 101 ms
145,792 KB
testcase_13 AC 557 ms
161,664 KB
testcase_14 AC 582 ms
164,064 KB
testcase_15 AC 632 ms
162,688 KB
testcase_16 AC 656 ms
160,616 KB
testcase_17 AC 557 ms
166,400 KB
testcase_18 AC 526 ms
162,176 KB
testcase_19 AC 517 ms
162,304 KB
testcase_20 AC 508 ms
162,560 KB
testcase_21 AC 560 ms
165,248 KB
testcase_22 AC 536 ms
162,048 KB
testcase_23 AC 303 ms
158,592 KB
testcase_24 AC 333 ms
158,848 KB
testcase_25 AC 674 ms
158,464 KB
testcase_26 AC 252 ms
158,720 KB
testcase_27 AC 465 ms
158,464 KB
testcase_28 AC 72 ms
101,248 KB
testcase_29 AC 509 ms
162,816 KB
testcase_30 AC 523 ms
162,548 KB
testcase_31 AC 516 ms
162,304 KB
testcase_32 AC 550 ms
161,536 KB
testcase_33 AC 602 ms
164,480 KB
testcase_34 AC 512 ms
162,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

FACT=[1]
for i in range(1,3*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(3*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0

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

if N==M==1:
    print(1)
    exit()

"""
for x in range(1,M):
    for j in range(N+1):
        ANS+=Combi(x,j)*Combi(x,N-1-j)

    #print(ANS)

print(ANS%mod)
"""

F2=[1,1]

for i in range(2,6*10**5+1):
    F2.append(F2[-2]*i%mod)

def calc(x,y):
    if y==x*2+1:
        return 1
    if x-y//2>=0:
        A1=FACT[x]*pow(FACT[x-y//2],mod-2,mod)
    else:
        A1=0

    if 2*x-1-(y-1)//2*2>=0:
        A2=F2[2*x-1]*pow(F2[2*x-1-(y-1)//2*2],mod-2,mod)
    else:
        A2=0

    C1=FACT[(y-1)//2]
    C2=F2[y//2*2-1]

    #print(A1,A2,C1,C2)

    if y%2==0:
        A1*=2

    return A1*A2*pow(C1*C2,mod-2,mod)%mod

for x in range(1,M):
    ANS+=calc(x,N)

    #if calc(x,N)>0:
    #    print(x,calc(x,N))

    #X=0

    #for j in range(N+1):
    #    X+=Combi(x,j)*Combi(x,N-1-j)

    #print((x,N),calc(x,N),X)


print(ANS%mod)
    
0