結果

問題 No.1832 NAND Reversible
ユーザー rlangevinrlangevin
提出日時 2024-02-09 12:39:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 1,159 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-09-28 12:59:14
合計ジャッジ時間 2,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 96 ms
83,840 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 66 ms
69,240 KB
testcase_07 AC 102 ms
84,140 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 87 ms
83,712 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 55 ms
66,432 KB
testcase_14 AC 57 ms
67,200 KB
testcase_15 AC 79 ms
82,432 KB
testcase_16 AC 90 ms
84,864 KB
testcase_17 AC 92 ms
83,584 KB
testcase_18 AC 90 ms
83,456 KB
testcase_19 AC 87 ms
83,840 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 41 ms
51,968 KB
testcase_22 AC 69 ms
69,424 KB
testcase_23 AC 39 ms
52,352 KB
testcase_24 AC 56 ms
66,432 KB
testcase_25 AC 96 ms
84,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
if K == 0:
    print(1)
    exit()
if K == 1:
    if N % 2 == 0:
        print(2)
    else:
        print(N - 2)
    exit()
mod = 998244353
N, K = N - 2, K - 2
if K == 0:
    print(pow((N+2)//2, 2, mod))
    exit()
if K == N:
    print(1)
    exit()

n = 505050
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod

ans = 0
for i in range(1, N):
    x = i + 1
    y = 1
    dx = N - x
    dy = K - y
    a = min(dx, dy)
    b = max(dx - a, dy - a)
    if a < 0 or b < 0:
        break
    if dx < dy:
        break
    ans += comb(a+b,a) * pow((i+2)//2, 2, mod)
    ans %= mod
    
for i in range(1, N):
    x = i + 1
    y = i
    dx = N - x
    dy = K - y
    a = min(dx, dy)
    b = max(dx - a, dy - a)
    if a < 0 or b < 0:
        break
    if dx < dy:
        break
    ans += comb(a+b,a)
    ans %= mod
    
print(ans)
0