結果

問題 No.1832 NAND Reversible
ユーザー H20H20
提出日時 2021-12-13 20:39:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 116,992 KB
最終ジャッジ日時 2024-09-15 14:12:49
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 118 ms
116,992 KB
testcase_04 AC 94 ms
103,296 KB
testcase_05 AC 93 ms
103,296 KB
testcase_06 AC 91 ms
103,424 KB
testcase_07 AC 114 ms
116,352 KB
testcase_08 AC 97 ms
105,472 KB
testcase_09 AC 92 ms
103,552 KB
testcase_10 AC 91 ms
103,296 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 42 ms
51,456 KB
testcase_14 AC 42 ms
52,096 KB
testcase_15 AC 79 ms
85,760 KB
testcase_16 AC 95 ms
100,736 KB
testcase_17 AC 110 ms
111,104 KB
testcase_18 AC 98 ms
105,600 KB
testcase_19 AC 93 ms
101,376 KB
testcase_20 AC 92 ms
103,552 KB
testcase_21 AC 98 ms
105,216 KB
testcase_22 AC 99 ms
104,832 KB
testcase_23 AC 42 ms
51,840 KB
testcase_24 AC 41 ms
51,456 KB
testcase_25 AC 108 ms
112,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#コンビネーション
def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )


if K==0:
    print(1)
    exit()
if K==1 and N%2==0:
    print(2)
    exit()
if K==1 and N%2==1:
    print(N-2)
    exit()
ans = 0
temp = ((N-K)//2)*2+1
for i in range(0,temp,2):
    ans = (ans + (i+1)*cmb(N-2-i,K-2,mod))%mod

print(ans)
0