Pro.ID21757 Title'Bulls and Cows' Title链接http://10.20.2.8/oj/exercise/problem?problem_id=21757 AC0 Submit0 Ratio- 时间&空间限制描述You probably know the game "bulls and cows". Just in case, we explain the rules. The first player picks a four-digit number with all digits distinct (leading zero is allowed) and keeps it secret. The second player tries to guess the secret number. For each guess, the first player issues a response in the form "n bulls, m cows". A "bull" is a digit that is present in both the secret and the guess and occurs in the same position in both. A "cow" is a digit that is present in both numbers, but occurs in different positions. For example, if the first player picked 5071, and the second guessed 6012, the response would be "one bull, one cow". Here the "bull" is the digit 0, as it is in the second position in both numbers, and the "cow" is the digit 1, as it is in the fourth position in the secret, but in the third position in the guess. Write a program to count the number of cows and bulls for the given the secret and guess. 输入The first line of the input file contains four digits, the number picked by the first player. The second line contains the number guessed by the second player in the same format. 输出Description You probably know the game "bulls and cows". Just in case, we explain the rules. The first player picks a four-digit number with all digits distinct (leading zero is allowed) and keeps it secret. The second player tries to guess the secret number. For each guess, the first player issues a response in the form "n bulls, m cows". A "bull" is a digit that is present in both the secret and the guess and occurs in the same position in both. A "cow" is a digit that is present in both numbers, but occurs in different positions. For example, if the first player picked 5071, and the second guessed 6012, the response would be "one bull, one cow". Here the "bull" is the digit 0, as it is in the second position in both numbers, and the "cow" is the digit 1, as it is in the fourth position in the secret, but in the third position in the guess. Write a program to count the number of cows and bulls for the given the secret and guess. Input The first line of the input file contains four digits, the number picked by the first player. The second line contains the number guessed by the second player in the same format. Output The first and only line of the output file should contain two integers separated by a space, the number of "bulls" and the number of "cows". Sample Input Sample #1 Sample Output Sample #1 Source 样例输入Sample #1 样例输出Sample #1 作者 |