結果

問題 No.2791 Beginner Contest
ユーザー ゼットゼット
提出日時 2024-06-21 21:30:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 77,612 KB
最終ジャッジ日時 2024-06-21 21:30:42
合計ジャッジ時間 2,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,740 KB
testcase_01 AC 35 ms
53,668 KB
testcase_02 WA -
testcase_03 AC 34 ms
53,284 KB
testcase_04 AC 35 ms
52,480 KB
testcase_05 AC 34 ms
52,956 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 110 ms
77,380 KB
testcase_12 WA -
testcase_13 AC 97 ms
77,232 KB
testcase_14 AC 65 ms
76,316 KB
testcase_15 AC 102 ms
77,480 KB
testcase_16 AC 37 ms
58,308 KB
testcase_17 AC 33 ms
53,240 KB
testcase_18 AC 113 ms
77,392 KB
testcase_19 AC 112 ms
77,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
u=[1]*(N+1)
mod=998244353
for i in range(1,N+1):
  u[i]=u[i-1]*i
  u[i]%=mod
u2=[1]*(N+1)
for i in range(N+1):
  u2[i]=pow(u[i],-1,mod)
def ncm(x,y):
  ans=u[x]*u2[y]
  ans%=mod
  ans*=u2[x-y]
  ans%=mod
  return ans
result=1
for k in range(1,N+1):
  rest=N-k*K
  if rest<0:
    break
  result+=ncm(rest+k,k)
print(result)
0