CF1093B.Letters Rearranging

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a string ss consisting only of lowercase Latin letters.

You can rearrange all letters of this string as you wish. Your task is to obtain a good string by rearranging the letters of the given string or report that it is impossible to do it.

Let's call a string good if it is not a palindrome. Palindrome is a string which is read from left to right the same as from right to left. For example, strings "abacaba", "aa" and "z" are palindromes and strings "bba", "xd" are not.

You have to answer tt independent queries.

输入格式

The first line of the input contains one integer tt ( 1t1001 \le t \le 100 ) — number of queries.

Each of the next tt lines contains one string. The ii -th line contains a string sis_i consisting only of lowercase Latin letter. It is guaranteed that the length of sis_i is from 11 to 10001000 (inclusive).

输出格式

Print tt lines. In the ii -th line print the answer to the ii -th query: -1 if it is impossible to obtain a good string by rearranging the letters of sis_i and any good string which can be obtained from the given one (by rearranging the letters) otherwise.

输入输出样例

  • 输入#1

    3
    aa
    abacaba
    xdd
    

    输出#1

    -1
    abaacba
    xdd

说明/提示

In the first query we cannot rearrange letters to obtain a good string.

Other examples (not all) of correct answers to the second query: "ababaca", "abcabaa", "baacaba".

In the third query we can do nothing to obtain a good string.

首页