102181: [AtCoder]ABC218 B - qwerty

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

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

Print a string $S$ of length $26$ that satisfies the following condition.

  • For every $i$ $(1 \leq i \leq 26)$, the $i$-th character of $S$ is the lowercase English letter that comes $P_i$-th in alphabetical order.

Constraints

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

Input

Input is given from Standard Input in the following format:

$P_1$ $P_2$ $\ldots$ $P_{26}$

Output

Print the string $S$.


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

Input

题意翻译

输入 $26$ 个互不相同的,在 $1$ 到 $26$ 之间的正整数,依次输出由这 $26$ 个数字所对应的字母**连成的字符串**,其中每个字母在字母表中是第几位由该字母所对应的输入直接给出。 **注:输出小写字母。**

Output

得分:200分 部分 问题描述 你得到了一个由1到26的整数构成的序列$P=(P_1,P_2, \ldots ,P_{26})$。保证$P$中的所有元素都不同。 输出一个长度为26的字符串$S$,满足以下条件。 - 对于每个$i$ $(1 \leq i \leq 26)$,字符串$S$的第$i$个字符是按字母顺序排在第$P_i$位的小写英文字母。 部分 约束 - $1 \leq P_i \leq 26$ - $P_i \neq P_j$ $(i \neq j)$ - 输入中的所有值都是整数。 部分 输入 从标准输入按照以下格式给出输入: $P_1$ $P_2$ $\ldots$ $P_{26}$ 部分 输出 输出字符串$S$。 部分 样例输入 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 部分 样例输出 1 abcdefghijklmnopqrstuvwxyz 部分 样例输入 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 部分 样例输出 2 bacdefghijklmnopqrstuvwxyz 部分 样例输入 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 部分 样例输出 3 eklpyqragjdwtcbxzsnifvhmou

加入题单

上一题 下一题 算法标签: