시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB69464572.581%

문제

Given an integer A, only other integers that are permutations of A are useful. All other numbers are useless. Find the next largest integer B, where the digits in B is a permutation of the digits of A. For example, suppose A=2413, then the next largest permutation is 2431. If A is already the largest permutation, output “USELESS”.

입력

The first line in the data file is an integer that represents the number of data sets to follow. Each line is a single integer A (A <= 2,000,000).

출력

Print B, the next largest permutation. If it doesn’t exist print “USELESS”.

예제 입력 1

4
237531
1234
4321
3444

예제 출력 1

251337
1243
USELESS
4344