結果

問題 No.2530 Yellow Cards
ユーザー mkawa2mkawa2
提出日時 2023-11-03 23:01:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 1,224 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 77,156 KB
最終ジャッジ日時 2024-09-25 21:21:03
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,380 KB
testcase_01 AC 32 ms
52,492 KB
testcase_02 AC 44 ms
62,284 KB
testcase_03 AC 45 ms
63,408 KB
testcase_04 AC 34 ms
52,624 KB
testcase_05 AC 41 ms
61,892 KB
testcase_06 AC 40 ms
59,648 KB
testcase_07 AC 231 ms
76,616 KB
testcase_08 AC 226 ms
76,844 KB
testcase_09 AC 224 ms
77,156 KB
testcase_10 AC 231 ms
76,800 KB
testcase_11 AC 232 ms
76,640 KB
testcase_12 AC 228 ms
76,736 KB
testcase_13 AC 223 ms
76,588 KB
testcase_14 AC 196 ms
76,448 KB
testcase_15 AC 152 ms
75,832 KB
testcase_16 AC 140 ms
76,388 KB
testcase_17 AC 207 ms
76,556 KB
testcase_18 AC 89 ms
75,864 KB
testcase_19 AC 57 ms
75,852 KB
testcase_20 AC 78 ms
75,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

n, k = LI()
inv = pow(n, md-2, md)
dp = [0]*(n+1)
dp[0] = 1
for _ in range(k):
    pre, dp = dp, [0]*(n+1)
    for i in range(n+1):
        if pre[i] == 0: continue
        if i < n:
            dp[i+1] += pre[i]*(n-i)%md*inv%md
            dp[i+1] %= md
        if i:
            dp[i-1] += pre[i]*i%md*inv%md
            dp[i-1] %= md

inv = (md+1)//2
ans = 0
for i in range(n+1):
    ans += (k-i)*dp[i]%md
    ans %= md

ans = ans*inv%md+n
print(ans%md)
0