CF1147D.Palindrome XOR
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a string s consisting of characters "1", "0", and "?". The first character of s is guaranteed to be "1". Let m be the number of characters in s .
Count the number of ways we can choose a pair of integers a,b that satisfies the following:
- 1≤a<b<2m
- When written without leading zeros, the base-2 representations of a and b are both palindromes.
- The base-2 representation of bitwise XOR of a and b matches the pattern s . We say that t matches s if the lengths of t and s are the same and for every i , the i -th character of t is equal to the i -th character of s , or the i -th character of s is "?".
Compute this count modulo 998244353 .
输入格式
The first line contains a single string s ( 1≤∣s∣≤1000 ). s consists only of characters "1", "0" and "?". It is guaranteed that the first character of s is a "1".
输出格式
Print a single integer, the count of pairs that satisfy the conditions modulo 998244353 .
输入输出样例
输入#1
10110
输出#1
3
输入#2
1?0???10
输出#2
44
输入#3
1?????????????????????????????????????
输出#3
519569202
输入#4
1
输出#4
0
说明/提示
For the first example, the pairs in base-2 are (111,10001),(11,10101),(1001,11111) .