---
languages_supported:
- NA
title: AUTHEN
category: NA
old_version: true
problem_code: AUTHEN
tags:
- NA
layout: problem
---
### All submissions for this problem are available.
Several days ago Chef decided to register at one of the programming sites. For registering he was asked to choose a nickname and a password. There was no problem with choosing a nickname ("Chef" is his favorite nickname), but choosing a password in a secure way seemed to be a real problem for Chef. Therefore, he decided to write a program which would generate the password of length **N** consisting of small Latin letters _a_.._z_. Then Chef successfully registered at the site and saved the password in a file (as it was too hard to remember).
Today Chef decided to visit the site once again. He entered his nickname, copied the password from the file... "Authentication failed!" was the answer. Trying to understand the reason of this, he noticed that the password in his file had length **N+K** instead of **N**! Sure enough of the source of the problem, Chef went straight to his young brother.
And Chef was right, it was his brother who had inserted **K** random small Latin letters at some random positions (possibly at the beginning or at the end) of the password. Chef's brother didn't remember what exactly changes he had made at all, but he promised that he had done nothing besides inserting letters.
As there is no other way to recover the password, Chef is now starting to remove every possible combination of **K** letters from the password trying to enter (when Chef obtains the same password as one of the previously entered passwords, he doesn't try to enter using this password again). Now the question is: what is the number of times Chef will receive "Authentication failed!" as the answer before successful entering in the worst case? As the answer might be quite large, output its remainder of division by 1009419529.
### Input
The first line of the input file contains one integer **T** -- the number of test cases (no more than 10). Each test case is described by a line containing two integers **N** and **K** (1 ≤ **N** ≤ 10000, 1 ≤ **K** ≤ 100) separated by a single space, followed by a line containing a string of length **N+K** consisting of small Latin letters _a_.._z_.
### Output
For each test case output just one line containing the required number modulo 1009419529.
### Example
<pre>
<b>Input:</b>
3
2 1
aaa
3 1
abcd
4 2
ababab
<b>Output:</b>
0
3
10
<b>Explanation:</b>
</pre>In the first test case, the password is definitely "aa". In the second test case, it can be "abc", "abd", "acd" or "bcd", so in the worst case Chef will guess the correct option from the fourth attempt, thus making 3 unsuccessful attempts.