#abc218b. B - qwerty

B - qwerty

Score : 200200 points

问题描述

给定一个包含从 112626 的整数的序列 P=(P1,P2,,P26)P=(P_1,P_2, \ldots ,P_{26}),其中保证 PP 中的所有元素都是互不相同的。

输出一个长度为 2626 的字符串 SS,满足以下条件:

  • 对于所有 ii (1i26)(1 \leq i \leq 26)SS 中的第 ii 个字符是字母表中按字母顺序排列时位于第 PiP_i 位置的小写英文字母。

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

You are given a sequence of 2626 integers P=(P1,P2,,P26)P=(P_1,P_2, \ldots ,P_{26}) consisting of integers from 11 through 2626. It is guaranteed that all elements in PP are distinct.

Print a string SS of length 2626 that satisfies the following condition.

  • For every ii (1i26)(1 \leq i \leq 26), the ii-th character of SS is the lowercase English letter that comes PiP_i-th in alphabetical order.

Constraints

  • 1Pi261 \leq P_i \leq 26
  • PiPjP_i \neq P_j (ij)(i \neq j)
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

P1P_1 P2P_2 \ldots P26P_{26}

Output

Print the string SS.

Sample Input 1

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

Sample Output 1

abcdefghijklmnopqrstuvwxyz

Sample Input 2

2 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

Sample Output 2

bacdefghijklmnopqrstuvwxyz

Sample Input 3

5 11 12 16 25 17 18 1 7 10 4 23 20 3 2 24 26 19 14 9 6 22 8 13 15 21

Sample Output 3

eklpyqragjdwtcbxzsnifvhmou

update @ 2024/3/10 09:38:31