結果

問題 No.1771 A DELETEQ
ユーザー tamatotamato
提出日時 2021-12-06 23:36:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 3,500 ms
コード長 1,023 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 68,608 KB
最終ジャッジ日時 2024-07-07 09:49:14
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
64,000 KB
testcase_01 AC 49 ms
63,744 KB
testcase_02 AC 200 ms
68,608 KB
testcase_03 AC 46 ms
63,744 KB
testcase_04 AC 192 ms
68,352 KB
testcase_05 AC 193 ms
67,968 KB
testcase_06 AC 46 ms
63,744 KB
testcase_07 AC 45 ms
63,744 KB
testcase_08 AC 45 ms
63,744 KB
testcase_09 AC 58 ms
68,352 KB
testcase_10 AC 62 ms
67,840 KB
testcase_11 AC 64 ms
67,840 KB
testcase_12 AC 65 ms
68,224 KB
testcase_13 AC 57 ms
67,840 KB
testcase_14 AC 84 ms
67,968 KB
testcase_15 AC 93 ms
68,352 KB
testcase_16 AC 122 ms
68,352 KB
testcase_17 AC 52 ms
67,328 KB
testcase_18 AC 61 ms
68,096 KB
testcase_19 AC 53 ms
67,328 KB
testcase_20 AC 74 ms
67,840 KB
testcase_21 AC 53 ms
67,840 KB
testcase_22 AC 62 ms
67,840 KB
testcase_23 AC 65 ms
67,968 KB
testcase_24 AC 54 ms
67,840 KB
testcase_25 AC 53 ms
68,096 KB
testcase_26 AC 67 ms
67,712 KB
testcase_27 AC 55 ms
68,352 KB
testcase_28 AC 53 ms
68,096 KB
evil_hand_1.txt RE -
evil_hand_2.txt RE -
evil_hand_3.txt RE -
evil_random_1.txt RE -
evil_random_2.txt RE -
evil_random_3.txt RE -
evil_random_4.txt RE -
evil_random_5.txt RE -
evil_random_6.txt RE -
evil_random_7.txt RE -
evil_random_8.txt RE -
evil_random_9.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    # comb init
    nmax = 2 * 10 ** 5 + 10  # change here
    fac = [0] * nmax
    finv = [0] * nmax
    inv = [0] * nmax
    fac[0] = 1
    fac[1] = 1
    finv[0] = 1
    finv[1] = 1
    inv[1] = 1
    for i in range(2, nmax):
        fac[i] = fac[i - 1] * i % mod
        inv[i] = mod - inv[mod % i] * (mod // i) % mod
        finv[i] = finv[i - 1] * inv[i] % mod

    def comb(n, r):
        if n < r:
            return 0
        else:
            return (fac[n] * ((finv[r] * finv[n - r]) % mod)) % mod

    pow2 = [1] * 4001
    for i in range(4000):
        pow2[i+1] = (pow2[i] * 2)%mod

    x, y = map(int, input().split())
    assert x <= 4000 and y <= 4000
    if x > y:
        x, y = y, x

    ans = 0
    for i in range(x+1):
        for j in range(i+1):
            ans = (ans + ((comb(x + y - 2 * i + j, j) * comb(x + y - 2 * i, x - i))%mod * pow2[j])%mod)%mod
    print(ans)


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