結果

問題 No.1771 A DELETEQ
ユーザー mkawa2mkawa2
提出日時 2021-12-16 14:30:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,006 ms / 3,500 ms
コード長 1,519 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 84,260 KB
最終ジャッジ日時 2024-09-13 11:04:46
合計ジャッジ時間 13,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(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 = 18446744073709551615
# inf = 4294967295
# md = 10**9+7
md = 998244353

def nHr(hn, hr):
    return nCr(hn+hr-1, hr-1)

def nPr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_n-com_r]%md

def nCr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_r]%md*ifac[com_n-com_r]%md

# 準備
n_max = 200005
fac = [1]
for i in range(1, n_max+1): fac.append(fac[-1]*i%md)
ifac = [1]*(n_max+1)
ifac[n_max] = pow(fac[n_max], md-2, md)
for i in range(n_max-1, 1, -1): ifac[i] = ifac[i+1]*(i+1)%md

x, y = LI()
if x>4000 or y>4000:
    print(-1)
    exit()

lim = min(x, y)

ans = 0
for a in range(lim+1):
    for b in range(lim-a+1):
        ans += nCr(x+y-a-b*2, x-a-b)*nCr(y-b, y-a-b)%md*pow(2, a, md)%md
        ans %= md
        # pDB(a, b, ans)

print(ans)
0