跳到主要内容

P4414 [COCI 2006/2007

[COCI 2006/2007 #2] ABC P4414

三个整数分别为 A,B,CA,B,C。这三个数字不会按照这样的顺序给你,但它们始终满足条件:A<B<CA < B < C。为了看起来更加简洁明了,我们希望你可以按照给定的顺序重新排列它们。 【题目描述】

三个整数分别为 A,B,CA,B,C。这三个数字不会按照这样的顺序给你,但它们始终满足条件:A<B<CA < B < C。为了看起来更加简洁明了,我们希望你可以按照给定的顺序重新排列它们。

【输入格式】

第一行包含三个正整数 A,B,CA,B,C,不一定是按这个顺序。这三个数字都小于或等于 100100。第二行包含三个大写字母 AA, BBCC(它们之间没有空格)表示所需的顺序。

【输出格式】

在一行中输出 AABBCC,用一个 (空格)隔开。

感谢 @smartzzh 提供的翻译

输入数据格式

The first line contains three positive integers A, B and C, not necessarily in that order. All three numbers will be less than or equal to 100. The second line contains three uppercase letters 'A', 'B' and 'C' (with no spaces between them) representing the desired order.

输出数据格式

Output the A, B and C in the desired order on a single line, separated by single spaces.

输入输出样例

输入 #1输出 #1
1 5 3
ABC
1 3 5
输入 #2输出 #2
------
6 4 2
CAB
6 2 4

*练习笔记

暂无人完成练习,做第一个完成练习的人—-first blood !