結果

問題 No.2511 Mountain Sequence
ユーザー ゼットゼット
提出日時 2023-10-23 19:11:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 76,340 KB
最終ジャッジ日時 2024-09-22 12:57:14
合計ジャッジ時間 7,198 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,216 KB
testcase_01 AC 36 ms
52,748 KB
testcase_02 AC 120 ms
67,640 KB
testcase_03 AC 166 ms
69,180 KB
testcase_04 AC 105 ms
66,692 KB
testcase_05 AC 149 ms
70,780 KB
testcase_06 AC 116 ms
69,000 KB
testcase_07 AC 204 ms
74,004 KB
testcase_08 AC 105 ms
67,096 KB
testcase_09 AC 111 ms
65,492 KB
testcase_10 AC 215 ms
74,652 KB
testcase_11 AC 181 ms
72,364 KB
testcase_12 AC 98 ms
64,780 KB
testcase_13 AC 222 ms
73,772 KB
testcase_14 AC 192 ms
74,228 KB
testcase_15 AC 183 ms
73,024 KB
testcase_16 AC 161 ms
72,064 KB
testcase_17 AC 213 ms
76,268 KB
testcase_18 AC 224 ms
74,328 KB
testcase_19 AC 227 ms
73,992 KB
testcase_20 AC 240 ms
75,452 KB
testcase_21 AC 209 ms
76,340 KB
testcase_22 AC 221 ms
74,752 KB
testcase_23 AC 80 ms
64,000 KB
testcase_24 AC 86 ms
65,132 KB
testcase_25 AC 143 ms
68,296 KB
testcase_26 AC 70 ms
62,988 KB
testcase_27 AC 109 ms
66,944 KB
testcase_28 AC 36 ms
52,768 KB
testcase_29 AC 243 ms
76,144 KB
testcase_30 AC 240 ms
74,896 KB
testcase_31 AC 240 ms
75,644 KB
testcase_32 AC 220 ms
74,052 KB
testcase_33 AC 202 ms
74,156 KB
testcase_34 AC 235 ms
75,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
K=2*(M+N)
mod=998244353
u=[1]*(K+1)
for i in range(1,K+1):
  u[i]=u[i-1]*i
  u[i]%=mod
u2=[1]*(K+1)
for i in range(1,K+1):
  ans=1
  w=u[i]
  n=mod-2
  while n>0:
    if n&1:
      ans*=w
      ans%=mod
    w**=2
    w%=mod
    n//=2
  u2[i]=ans
def ncm(x,y):
  if y>x:
    return 0
  ans=u[x]
  ans*=u2[y]
  ans%=mod
  ans*=u2[x-y]
  ans%=mod
  return ans
result=0
for k in range(1,M+1):
  result+=ncm(2*k-2,N-1)
  result%=mod
print(result)
0