結果

問題 No.2791 Beginner Contest
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-21 22:18:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 84,360 KB
最終ジャッジ日時 2024-06-21 22:18:58
合計ジャッジ時間 2,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,940 KB
testcase_01 AC 33 ms
52,576 KB
testcase_02 AC 53 ms
75,540 KB
testcase_03 AC 33 ms
52,344 KB
testcase_04 AC 32 ms
52,552 KB
testcase_05 AC 33 ms
52,268 KB
testcase_06 AC 66 ms
80,756 KB
testcase_07 AC 41 ms
64,808 KB
testcase_08 AC 43 ms
65,048 KB
testcase_09 AC 73 ms
82,908 KB
testcase_10 AC 72 ms
82,748 KB
testcase_11 AC 74 ms
84,112 KB
testcase_12 AC 77 ms
84,196 KB
testcase_13 AC 65 ms
82,540 KB
testcase_14 AC 47 ms
73,624 KB
testcase_15 AC 68 ms
84,360 KB
testcase_16 AC 32 ms
52,688 KB
testcase_17 AC 32 ms
52,012 KB
testcase_18 AC 68 ms
84,172 KB
testcase_19 AC 69 ms
84,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
M=998244353
fa=[1,1]
fb=[1,1]
for i in range(2,n+1):
  fa+=[fa[-1]*i%M]
  fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M]
g=1
for i in range(1,n+1):
  if n-i*k>=0:
    g+=fa[n-i*k+i]*fb[n-i*k]*fb[i]
    g%=M
print(g)
0