結果

問題 No.2528 pop_(backfront or not)
ユーザー titiatitia
提出日時 2023-11-03 22:31:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 914 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 81,632 KB
実行使用メモリ 326,724 KB
最終ジャッジ日時 2023-11-03 22:31:54
合計ジャッジ時間 5,854 ms
ジャッジサーバーID
(参考情報)
judge13 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
91,292 KB
testcase_01 AC 65 ms
91,292 KB
testcase_02 AC 65 ms
91,292 KB
testcase_03 AC 67 ms
91,292 KB
testcase_04 AC 69 ms
93,340 KB
testcase_05 AC 167 ms
104,264 KB
testcase_06 AC 182 ms
104,264 KB
testcase_07 AC 375 ms
140,620 KB
testcase_08 AC 534 ms
178,304 KB
testcase_09 AC 1,759 ms
326,724 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

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

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*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=int(input())

from functools import lru_cache
@lru_cache(maxsize=None)
def calc(x,y):
    if y==1 or y==x:
        return 0
    if x==3:
        if y==2:
            return 1
        else:
            return 0

    ANS=0

    # 左から二つ
    ANS+=Combi(y-1-1,2)*calc(x-2,y-2)
    # 左右一つずつ
    ANS+=Combi(y-1-1,1)*Combi(x-y-1,1)*calc(x-2,y-1)
    # 端二つ
    ANS+=calc(x-2,y-1)
    # 右から二つ
    ANS+=Combi(x-y-1,2)*calc(x-2,y)
    

    return ANS%mod

for i in range(1,N*2+2):
    print(calc(N*2+1,i))
    

    
0