結果

問題 No.2511 Mountain Sequence
ユーザー nasutarou1341nasutarou1341
提出日時 2024-12-25 01:23:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 152,448 KB
最終ジャッジ日時 2024-12-25 01:23:39
合計ジャッジ時間 5,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 31 ms
51,584 KB
testcase_02 AC 102 ms
117,744 KB
testcase_03 AC 62 ms
81,920 KB
testcase_04 AC 70 ms
88,704 KB
testcase_05 AC 82 ms
100,608 KB
testcase_06 AC 95 ms
112,000 KB
testcase_07 AC 115 ms
132,480 KB
testcase_08 AC 60 ms
78,592 KB
testcase_09 AC 51 ms
74,496 KB
testcase_10 AC 151 ms
141,852 KB
testcase_11 AC 126 ms
142,720 KB
testcase_12 AC 33 ms
51,968 KB
testcase_13 AC 133 ms
152,064 KB
testcase_14 AC 126 ms
142,848 KB
testcase_15 AC 136 ms
152,064 KB
testcase_16 AC 142 ms
151,680 KB
testcase_17 AC 129 ms
142,976 KB
testcase_18 AC 129 ms
142,336 KB
testcase_19 AC 159 ms
142,208 KB
testcase_20 AC 133 ms
152,064 KB
testcase_21 AC 128 ms
142,464 KB
testcase_22 AC 134 ms
151,936 KB
testcase_23 AC 70 ms
88,796 KB
testcase_24 AC 75 ms
92,160 KB
testcase_25 AC 134 ms
150,912 KB
testcase_26 AC 62 ms
79,744 KB
testcase_27 AC 98 ms
111,232 KB
testcase_28 AC 34 ms
52,096 KB
testcase_29 AC 166 ms
152,320 KB
testcase_30 AC 134 ms
152,192 KB
testcase_31 AC 135 ms
151,808 KB
testcase_32 AC 136 ms
152,448 KB
testcase_33 AC 139 ms
152,064 KB
testcase_34 AC 133 ms
151,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class comb():
  F = [1, 1]
  Fi = [1, 1]
  I = [0, 1]
  def __init__(self, num, mod):
    self.MOD = mod
    for i in range(2, num + 1):
      self.F.append((self.F[-1] * i) % mod)
      self.I.append(mod - self.I[mod % i] * (mod // i) % mod)
      self.Fi.append(self.Fi[-1] * self.I[i] % mod)
  def com(self, n, k):
    if n < k: return 0
    if n < 0 or k < 0: return 0
    return self.F[n] * (self.Fi[k] * self.Fi[n - k] % self.MOD) % self.MOD

N, M = list(map(int, input().split()))
MOD = 998244353

com = comb(M * 2, MOD)
ans = 0
for i in range(1, M + 1):
  lng = i * 2 - 1
  if lng >= N:
    ans += com.com(lng - 1, lng - N)
    ans %= MOD
print(ans)
0