题库练习 Inverse Coloring
← 上一题 下一题 →

A12052 | Inverse Coloring

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

题目描述

You are given a square board, consisting of $n$ rows and $n$ columns. Each tile in it should be colored either white or black.

Let's call some coloring beautiful if each pair of adjacent rows are either the same or different in every position. The same condition should be held for the columns as well.

Let's call some coloring suitable if it is beautiful and there is no rectangle of the single color, consisting of at least $k$ tiles.

Your task is to count the number of suitable colorings of the board of the given size.

Since the answer can be very large, print it modulo $998244353$ .

输入格式

A single line contains two integers $n$ and $k$ ( $1 \le n \le 500$ , $1 \le k \le n^2$ ) — the number of rows and columns of the board and the maximum number of tiles inside the rectangle of the single color, respectively.

输出格式

Print a single integer — the number of suitable colorings of the board of the given size modulo $998244353$ .

输入输出样例

输入 #1
1 1
输出 #1
0
输入 #2
2 3
输出 #2
6
输入 #3
49 1808
输出 #3
359087121
C++ 编辑器
输入
输出