CF1603F.October 18, 2017
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
It was October 18, 2017. Shohag, a melancholic soul, made a strong determination that he will pursue Competitive Programming seriously, by heart, because he found it fascinating. Fast forward to 4 years, he is happy that he took this road. He is now creating a contest on Codeforces. He found an astounding problem but has no idea how to solve this. Help him to solve the final problem of the round.
You are given three integers n , k and x . Find the number, modulo 998244353 , of integer sequences a1,a2,…,an such that the following conditions are satisfied:
- 0≤ai<2k for each integer i from 1 to n .
- There is no non-empty subsequence in a such that the bitwise XOR of the elements of the subsequence is x .
A sequence b is a subsequence of a sequence c if b can be obtained from c by deletion of several (possibly, zero or all) elements.
输入格式
The first line contains a single integer t ( 1≤t≤105 ) — the number of test cases.
The first and only line of each test case contains three space-separated integers n , k , and x ( 1≤n≤109 , 0≤k≤107 , 0≤x<2min(20,k) ).
It is guaranteed that the sum of k over all test cases does not exceed 5⋅107 .
输出格式
For each test case, print a single integer — the answer to the problem.
输入输出样例
输入#1
6 2 2 0 2 1 1 3 2 3 69 69 69 2017 10 18 5 7 0
输出#1
6 1 15 699496932 892852568 713939942
说明/提示
In the first test case, the valid sequences are [1,2] , [1,3] , [2,1] , [2,3] , [3,1] and [3,2] .
In the second test case, the only valid sequence is [0,0] .