結果

問題 No.2511 Mountain Sequence
ユーザー titiatitia
提出日時 2023-11-19 03:19:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,205 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 166,148 KB
最終ジャッジ日時 2024-09-26 06:13:54
合計ジャッジ時間 17,567 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
145,408 KB
testcase_01 AC 110 ms
145,408 KB
testcase_02 AC 507 ms
159,744 KB
testcase_03 AC 170 ms
150,400 KB
testcase_04 AC 286 ms
161,408 KB
testcase_05 AC 301 ms
164,948 KB
testcase_06 AC 494 ms
159,488 KB
testcase_07 AC 456 ms
162,048 KB
testcase_08 AC 212 ms
162,528 KB
testcase_09 AC 156 ms
151,552 KB
testcase_10 AC 520 ms
162,124 KB
testcase_11 AC 648 ms
162,816 KB
testcase_12 AC 111 ms
145,280 KB
testcase_13 AC 602 ms
161,992 KB
testcase_14 AC 636 ms
163,968 KB
testcase_15 AC 674 ms
162,688 KB
testcase_16 AC 709 ms
160,880 KB
testcase_17 AC 604 ms
166,148 KB
testcase_18 AC 557 ms
161,920 KB
testcase_19 AC 553 ms
162,340 KB
testcase_20 AC 546 ms
162,304 KB
testcase_21 AC 602 ms
165,504 KB
testcase_22 AC 583 ms
161,860 KB
testcase_23 AC 330 ms
158,976 KB
testcase_24 AC 359 ms
158,744 KB
testcase_25 AC 728 ms
158,720 KB
testcase_26 AC 272 ms
158,744 KB
testcase_27 AC 502 ms
158,720 KB
testcase_28 WA -
testcase_29 AC 553 ms
162,872 KB
testcase_30 AC 558 ms
162,432 KB
testcase_31 AC 560 ms
162,496 KB
testcase_32 AC 599 ms
161,664 KB
testcase_33 AC 646 ms
164,352 KB
testcase_34 AC 571 ms
162,204 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

"""
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