CF1729B.Decode String

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Polycarp has a string ss consisting of lowercase Latin letters.

He encodes it using the following algorithm.

He goes through the letters of the string ss from left to right and for each letter Polycarp considers its number in the alphabet:

  • if the letter number is single-digit number (less than 1010 ), then just writes it out;
  • if the letter number is a two-digit number (greater than or equal to 1010 ), then it writes it out and adds the number 0 after.

For example, if the string ss is code, then Polycarp will encode this string as follows:

  • 'c' — is the 33 -rd letter of the alphabet. Consequently, Polycarp adds 3 to the code (the code becomes equal to 3);
  • 'o' — is the 1515 -th letter of the alphabet. Consequently, Polycarp adds 15 to the code and also 0 (the code becomes 3150);
  • 'd' — is the 44 -th letter of the alphabet. Consequently, Polycarp adds 4 to the code (the code becomes 31504);
  • 'e' — is the 55 -th letter of the alphabet. Therefore, Polycarp adds 5 to the code (the code becomes 315045).

Thus, code of string code is 315045.

You are given a string tt resulting from encoding the string ss . Your task is to decode it (get the original string ss by tt ).

输入格式

The first line of the input contains an integer qq ( 1q1041 \le q \le 10^4 ) — the number of test cases in the input.

The descriptions of the test cases follow.

The first line of description of each test case contains one integer nn ( 1n501 \le n \le 50 ) — the length of the given code.

The second line of the description of each test case contains a string tt of length nn — the given code. It is guaranteed that there exists such a string of lowercase Latin letters, as a result of encoding which the string tt is obtained.

输出格式

For each test case output the required string ss — the string that gives string tt as the result of encoding. It is guaranteed that such a string always exists. It can be shown that such a string is always unique.

输入输出样例

  • 输入#1

    9
    6
    315045
    4
    1100
    7
    1213121
    6
    120120
    18
    315045615018035190
    7
    1111110
    7
    1111100
    5
    11111
    4
    2606

    输出#1

    code
    aj
    abacaba
    ll
    codeforces
    aaaak
    aaaaj
    aaaaa
    zf

说明/提示

The first test case is explained above.

In the second test case, the answer is aj. Indeed, the number of the letter a is equal to 11 , so 1 will be appended to the code. The number of the letter j is 1010 , so 100 will be appended to the code. The resulting code is 1100.

There are no zeros in the third test case, which means that the numbers of all letters are less than 1010 and are encoded as one digit. The original string is abacaba.

In the fourth test case, the string ss is equal to ll. The letter l has the number 1212 and is encoded as 120. So ll is indeed 120120.

首页