CF1811A.Insert Digit

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You have a positive number of length nn and one additional digit.

You can insert this digit anywhere in the number, including at the beginning or at the end.

Your task is to make the result as large as possible.

For example, you have the number 7654376543 , and the additional digit is 44 . Then the maximum number you can get is 765443765443 , and it can be obtained in two ways — by inserting a digit after the 33 th or after the 44 th digit of the number.

输入格式

The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

The descriptions of the test cases follow.

The first line of the description of each test case contains two integers nn and dd ( 1n21051 \le n \le 2 \cdot 10^5 ; 0d90 \le d \le 9 ) — the length of the number and an additional digit, respectively.

The second line of the description of each test case contains a string consisting of nn digits — the number that you have initially. It is guaranteed that the number does not contain leading zeros.

It is guaranteed that the sum of nn for all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output a string consisting of n+1n + 1 digits — the maximum possible number that can be obtained.

输入输出样例

  • 输入#1

    11
    5 4
    76543
    1 0
    1
    2 5
    44
    3 6
    666
    5 6
    13579
    5 8
    97531
    19 4
    9876543210123456789
    5 7
    73737
    8 1
    20000000
    7 0
    7058959
    12 1
    828127127732

    输出#1

    765443
    10
    544
    6666
    613579
    987531
    98765443210123456789
    773737
    210000000
    70589590
    8281271277321
首页