結果
問題 | No.1388 Less than K |
ユーザー | Mitarushi |
提出日時 | 2020-11-23 08:27:46 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,307 bytes |
コンパイル時間 | 790 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 87,040 KB |
最終ジャッジ日時 | 2024-05-04 17:32:22 |
合計ジャッジ時間 | 8,456 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 60 ms
79,104 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 61 ms
78,720 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | RE | - |
testcase_74 | RE | - |
testcase_75 | RE | - |
testcase_76 | RE | - |
ソースコード
mod = 998244353 max_fact = 2*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][i] %= 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)