2069: 计数排序~字符排序
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:17
Solved:9
Description
使用计数排序完成。输入n个英文字符,对其进行升序排列。其中n不超过10000。
Input
第一行输入n;
第二行,接着输入n个字符,空格分隔。
第二行,接着输入n个字符,空格分隔。
Output
排序后的字符序列,空格分隔。
Sample Input Copy
5 A p p l e
Sample Output Copy
A e l p p