結果

問題 No.1832 NAND Reversible
ユーザー s1230149s1230149
提出日時 2022-07-07 13:33:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 793 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 128,636 KB
最終ジャッジ日時 2024-12-24 10:16:08
合計ジャッジ時間 41,327 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1,442 ms
128,248 KB
testcase_03 AC 1,613 ms
128,252 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1,421 ms
128,252 KB
testcase_07 AC 1,560 ms
128,252 KB
testcase_08 AC 1,627 ms
128,052 KB
testcase_09 WA -
testcase_10 AC 1,422 ms
128,632 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,401 ms
128,252 KB
testcase_14 AC 1,411 ms
128,376 KB
testcase_15 AC 1,450 ms
128,124 KB
testcase_16 AC 1,474 ms
128,380 KB
testcase_17 AC 1,633 ms
128,248 KB
testcase_18 AC 1,460 ms
128,256 KB
testcase_19 AC 1,428 ms
128,252 KB
testcase_20 AC 1,395 ms
128,376 KB
testcase_21 AC 1,584 ms
128,636 KB
testcase_22 AC 1,631 ms
128,252 KB
testcase_23 WA -
testcase_24 AC 1,395 ms
128,508 KB
testcase_25 AC 1,499 ms
128,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
def cmb(n, r, p):
    if (r < 0) or (n < r):
        return 0
    r = min(r, n - r)
    return fact[n] * factinv[r] * factinv[n-r] % p

p = 998244353
N = 10 ** 6  # N は必要分だけ用意する
fact = [1, 1]  # fact[n] = (n! mod p)
factinv = [1, 1]  # factinv[n] = ((n!)^(-1) mod p)
inv = [0, 1]  # factinv 計算用

for i in range(2, N + 1):
    fact.append((fact[-1] * i) % p)
    inv.append((-inv[p % i] * (p // i)) % p)
    factinv.append((factinv[-1] * inv[-1]) % p)

N, K = map(int, input().split())
K = N - K
# number of 1
mod = 998244353
ans = 0
for i in range(K+1):
    if i%2 == 1: continue
    if N - i - 1 == 0: ans += i + 1
    if N - i - 2 < 0: continue
    a = i + 1
    b = cmb((N - i - 2), K - i, p)
    ans += a * b
    ans %= mod
print(ans%mod)
0