結果

問題 No.1832 NAND Reversible
ユーザー titiatitia
提出日時 2022-02-09 00:01:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-06-23 19:54:54
合計ジャッジ時間 6,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
26,624 KB
testcase_01 AC 170 ms
26,624 KB
testcase_02 AC 167 ms
26,624 KB
testcase_03 AC 252 ms
26,496 KB
testcase_04 AC 164 ms
26,496 KB
testcase_05 AC 163 ms
26,496 KB
testcase_06 AC 160 ms
26,496 KB
testcase_07 AC 244 ms
26,496 KB
testcase_08 AC 248 ms
26,624 KB
testcase_09 AC 161 ms
26,624 KB
testcase_10 AC 165 ms
26,496 KB
testcase_11 AC 162 ms
26,496 KB
testcase_12 AC 170 ms
26,496 KB
testcase_13 AC 166 ms
26,624 KB
testcase_14 AC 165 ms
26,496 KB
testcase_15 AC 179 ms
26,496 KB
testcase_16 AC 197 ms
26,496 KB
testcase_17 AC 241 ms
26,496 KB
testcase_18 AC 165 ms
26,496 KB
testcase_19 AC 174 ms
26,496 KB
testcase_20 AC 160 ms
26,496 KB
testcase_21 AC 247 ms
26,496 KB
testcase_22 AC 248 ms
26,624 KB
testcase_23 AC 162 ms
26,496 KB
testcase_24 AC 162 ms
26,496 KB
testcase_25 AC 216 ms
26,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())

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

if K==0 or K==N:
    print(1)
    exit()

if K==1:
    if N%2==0:
        print(2)
    else:
        print(N-2)
    exit()

ANS=0

for a in range(0,N-K+1,2):
    ANS+=Combi(N-2-a,K-2)*(a+1)
    ANS%=mod
    #print(a,ANS)

print(ANS)



0