题库练习 Function Sum
← 上一题 下一题 →

A15460 | Function Sum

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Suppose you have an integer array $a_1, a_2, \dots, a_n$ .

Let $\operatorname{lsl}(i)$ be the number of indices $j$ ( $1 \le j < i$ ) such that $a_j < a_i$ .

Analogically, let $\operatorname{grr}(i)$ be the number of indices $j$ ( $i < j \le n$ ) such that $a_j > a_i$ .

Let's name position $i$ good in the array $a$ if $\operatorname{lsl}(i) < \operatorname{grr}(i)$ .

Finally, let's define a function $f$ on array $a$ $f(a)$ as the sum of all $a_i$ such that $i$ is good in $a$ .

Given two integers $n$ and $k$ , find the sum of $f(a)$ over all arrays $a$ of size $n$ such that $1 \leq a_i \leq k$ for all $1 \leq i \leq n$ modulo $998\,244\,353$ .

输入格式

The first and only line contains two integers $n$ and $k$ ( $1 \leq n \leq 50$ ; $2 \leq k < 998\,244\,353$ ).

输出格式

Output a single integer — the sum of $f$ over all arrays $a$ of size $n$ modulo $998\,244\,353$ .

输入输出样例

输入 #1
3 3
输出 #1
28
输入 #2
5 6
输出 #2
34475
输入 #3
12 30
输出 #3
920711694
C++ 编辑器
输入
输出