Pro.ID22323 TitleSuffidromes Title链接http://10.20.2.8/oj/exercise/problem?problem_id=22323 AC1 Submit1 Ratio100.00% 时间&空间限制描述Given two strings of lowercase letters, a and b, print the shortest string x of lowercase letters such that exactly one (but not both) of ax or bx is a palindrome; that is, equal to itself when reversed. 输入Standard input contains several pairs of a and b. Each string is on a separate line and consists of between 0 and 1,000 lowercase letters. 输出Description Given two strings of lowercase letters, a and b, print the shortest string x of lowercase letters such that exactly one (but not both) of ax or bx is a palindrome; that is, equal to itself when reversed. Input Standard input contains several pairs of a and b. Each string is on a separate line and consists of between 0 and 1,000 lowercase letters. Output For each pair, output a line containing x. If several x satisfy the criteria above, choose the first one in alphabetical order. Sample Input abab
ababab
abc
def Sample Output baba
ba Source 样例输入abab
ababab
abc
def 样例输出baba
ba 作者 |