結果

問題 No.1771 A DELETEQ
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-15 00:16:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 3,500 ms
コード長 2,011 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-12-15 00:16:06
合計ジャッジ時間 4,347 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 197 ms
62,592 KB
testcase_03 AC 39 ms
52,468 KB
testcase_04 AC 198 ms
62,336 KB
testcase_05 AC 194 ms
62,464 KB
testcase_06 AC 46 ms
59,496 KB
testcase_07 AC 47 ms
60,032 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 57 ms
62,336 KB
testcase_10 AC 66 ms
62,464 KB
testcase_11 AC 60 ms
61,696 KB
testcase_12 AC 61 ms
61,696 KB
testcase_13 AC 56 ms
61,824 KB
testcase_14 AC 83 ms
62,336 KB
testcase_15 AC 91 ms
61,824 KB
testcase_16 AC 117 ms
61,824 KB
testcase_17 AC 49 ms
60,800 KB
testcase_18 AC 54 ms
62,464 KB
testcase_19 AC 49 ms
60,672 KB
testcase_20 AC 71 ms
61,696 KB
testcase_21 AC 52 ms
61,568 KB
testcase_22 AC 64 ms
62,080 KB
testcase_23 AC 62 ms
61,824 KB
testcase_24 AC 52 ms
61,696 KB
testcase_25 AC 61 ms
61,824 KB
testcase_26 AC 67 ms
61,824 KB
testcase_27 AC 55 ms
61,696 KB
testcase_28 AC 51 ms
61,952 KB
evil_hand_1.txt WA -
evil_hand_2.txt WA -
evil_hand_3.txt WA -
evil_random_1.txt WA -
evil_random_2.txt WA -
evil_random_3.txt WA -
evil_random_4.txt WA -
evil_random_5.txt WA -
evil_random_6.txt WA -
evil_random_7.txt WA -
evil_random_8.txt WA -
evil_random_9.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/895

MOD = 998244353


class CombinationCalculator:
    """
    modを考慮したPermutation, Combinationを計算するためのクラス
    """    
    def __init__(self, size, mod):
        self.mod = mod
        self.factorial = [0] * (size + 1)
        self.factorial[0] = 1
        for i in range(1, size + 1):
            self.factorial[i] = (i * self.factorial[i - 1]) % self.mod
        
        self.inv_factorial = [0] * (size + 1)
        self.inv_factorial[size] = pow(self.factorial[size], self.mod - 2, self.mod)

        for i in reversed(range(size)):
            self.inv_factorial[i] = ((i + 1) * self.inv_factorial[i + 1]) % self.mod

    def calc_combination(self, n, r):
        if n < 0 or n < r or r < 0:
            return 0

        if r == 0 or n == r:
            return 1
        
        ans = self.inv_factorial[n - r] * self.inv_factorial[r]
        ans %= self.mod
        ans *= self.factorial[n]
        ans %= self.mod
        return ans
    
    def calc_permutation(self, n, r):
        if n < 0 or n < r:
            return 0

        ans = self.inv_factorial[n - r]
        ans *= self.factorial[n]
        ans %= self.mod
        return ans
        

def main():
    x, y = map(int, input().split())

    if not (x <= 4000 and y <= 4000):
        return

    combi = CombinationCalculator(x + y, MOD)
    answer = 0

    pow2 = [0] * (x + y + 1)
    p = 1
    for k in range(x + y + 1):
        pow2[k] = p
        p *= 2
        p %= MOD

    for z1 in range(min(x, y) + 1):
        for z0 in range(z1 + 1):

            ans = combi.factorial[x + y - 2 * z1 + z0]
            ans *= combi.inv_factorial[x - z1]
            ans %= MOD
            ans *= combi.inv_factorial[y - z1]
            ans %= MOD
            ans *= combi.inv_factorial[z0]
            ans %= MOD
            ans *= pow2[z0]
            ans %= MOD
            answer += ans
            answer %= MOD
    print(answer)




if __name__ == "__main__":
    main()
0