結果

問題 No.1388 Less than K
ユーザー MitarushiMitarushi
提出日時 2020-11-23 08:30:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,304 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,288 KB
最終ジャッジ日時 2024-11-26 06:54:55
合計ジャッジ時間 29,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 79 ms
98,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 79 ms
98,816 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 533 ms
107,904 KB
testcase_19 AC 756 ms
108,032 KB
testcase_20 AC 769 ms
108,032 KB
testcase_21 WA -
testcase_22 AC 109 ms
107,776 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 110 ms
107,648 KB
testcase_34 AC 110 ms
107,648 KB
testcase_35 AC 109 ms
107,776 KB
testcase_36 AC 124 ms
107,648 KB
testcase_37 AC 114 ms
107,648 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 649 ms
107,648 KB
testcase_44 AC 1,934 ms
107,904 KB
testcase_45 AC 740 ms
107,900 KB
testcase_46 AC 955 ms
107,904 KB
testcase_47 AC 1,417 ms
107,904 KB
testcase_48 AC 1,210 ms
107,776 KB
testcase_49 AC 1,437 ms
107,904 KB
testcase_50 AC 1,459 ms
107,904 KB
testcase_51 AC 795 ms
107,904 KB
testcase_52 AC 686 ms
107,648 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 1,583 ms
108,032 KB
testcase_59 AC 828 ms
107,904 KB
testcase_60 AC 701 ms
107,904 KB
testcase_61 AC 136 ms
107,728 KB
testcase_62 AC 112 ms
107,776 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 AC 1,445 ms
107,772 KB
testcase_71 AC 964 ms
107,904 KB
testcase_72 AC 147 ms
107,776 KB
testcase_73 AC 133 ms
107,636 KB
testcase_74 AC 129 ms
107,820 KB
testcase_75 AC 123 ms
107,776 KB
testcase_76 AC 122 ms
107,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

max_fact = 4*10**5 + 10
fact = [1]
for i in range(1, max_fact):
    fact.append(fact[-1] * i % mod)
fact_inv = [0] * max_fact
fact_inv[-1] = pow(fact[-1], mod - 2, mod)
for i in reversed(range(1, max_fact)):
    fact_inv[i - 1] = fact_inv[i] * i % mod


def comb(a, b):
    if a < 0 or b < 0:
        return 0
    elif a < b:
        return 0
    return fact[a] * fact_inv[b] % mod * fact_inv[a - b] % mod


h, w, k = map(int, input().split())
n = min(h, w)
ans = 0
if k > 300:
    k2 = (k + 2) // 2

    for i in range(n):
        s = comb(2*i, i)
        j = 1
        while i - j * k2 >= 0:
            if j % 2 == 0:
                s += comb(2*i,  i - j * k2) * 2
            else:
                s -= comb(2*i,  i - j * k2) * 2
            j += 1
        ans += s * comb(h+w-2, h-1-i) * comb(w+i-1, w-i-1)
        ans %= mod

else:
    k2 = k // 2
    dp1 = [0] * (k2 * 2 + 1)
    dp1[k2] = 1
    for i in range(n):
        dp2 = [0] * (k2 * 2 + 1)
        for j in range(k2 * 2 + 1):
            if j != 0:
                dp2[j] += dp2[j-1]
            if i != 0 and j != k2 * 2:
                dp2[j] += dp1[j+1]
            dp2[j] %= mod
        dp1 = dp2

    for i in range(n):
        ans += dp1[k2] * comb(h+w-2, h-1-i) * comb(w+i-1, w-i-1)
        ans %= mod
print(ans)
0