시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 (추가 시간 없음) 1024 MB (추가 메모리 없음)56151334.211%

문제

You want to build a pair of positive integers. To do that, you are given a list of decimal digits to use. You must use every digit in the list exactly once, but you get to choose which ones to use for the first integer and which ones to use for the second integer. You also get to choose the order of the digits within each integer, except you cannot put a zero as the most significant (leftmost) digit in either integer. Note that you cannot choose just a zero for one integer either, because it would not be positive.

For example, you could be given the list [1,0,2,0,4,3]. Two of the valid pairs you can build are (200,143) and (3,12400). The following pairs, on the other hand, are not valid:

  • (0102,34): has a leading zero.
  • (0,12340): has a non-positive integer.
  • (10,243) and (12300,47): the list of digits in each of these pairs is not exactly equal to the given list of digits.

Given the list of digits to use, what is the minimum absolute difference between the two built integers that can be achieved?

입력

The first line of the input gives the number of test cases, T. T lines follow. Each line describes a test case with a single string of digits D. Each character of D is a digit you must use.

출력

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the minimum possible absolute difference between the two integers built from D according to the rules above.

제한

  • 1 ≤ T ≤ 100.
  • Each character of D is a decimal digit.
  • At least two characters of D are not 0.

Test Set 1 (3점)

  • 2 ≤ the length of D ≤ 8.

Test Set 2 (12점)

  • 2 ≤ the length of D ≤ 36.

예제 입력 1

4
1234
0011
07080
0899

예제 출력 1

Case #1: 7
Case #2: 0
Case #3: 620
Case #4: 1

힌트

The optimal pair of integers to build are 31 and 24 for Sample Case #1, 10 and 10 for Sample Case #2, 700 and 80 for Sample Case #3, and 89 and 90 for Sample Case #4.

출처

Contest > Google > Code Jam > Google Code Jam 2021 > Round 3 A번

채점 및 기타 정보

  • 예제는 채점하지 않는다.