CF1461A.String Generation

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

String Generation

One fall day Joe got bored because he couldn't find himself something interesting to do. Marty suggested Joe to generate a string of length nn to entertain him somehow. It didn't seem particularly difficult, but Joe's generated string had to follow these rules:

  • the string may only contain characters 'a', 'b', or 'c';
  • the maximum length of a substring of this string that is a palindrome does not exceed kk.

A string aa is a substring of a string bb if aa can be obtained from bb by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end. For example, strings "a", "bc", "abc" are substrings of a string "abc", while strings "ac", "ba", "cba" are not.

A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, strings "abccba", "abbba", "aba", "abacaba", "a", and "bacab" are palindromes, while strings "abcbba", "abb", and "ab" are not.

Now Joe wants to find any correct string. Help him! It can be proven that the answer always exists under the given constraints.

Input

Each test contains one or more test cases. The first line contains the number of test cases tt (1t101 \le t \le 10).

The only line of each test case contains two integers nn and kk (1kn10001 \le k \le n \le 1\,000) — the required string length and the maximum length of a palindrome substring, respectively.

Output

For each test case, print any string that satisfies the conditions from the problem statement. If there are multiple correct answers, you can print any one of them. It can be proven that the answer always exists under the given constraints.

Note

In the first test case of the example, the palindrome substring with the maximum length is "aa". Its length does not exceed 22, so it fits.

In the second test case all palindrome substrings have the length one.

Samples

2
3 2
4 1
aab
acba

在线编程 IDE

建议全屏模式获得最佳体验