Sherlock Holmes received a note with some strange strings: Let's date! 3485djDkxh4hhGE 2984akDfkkkkggEdsb s&hgsfdk d&Hyscvnm
. It took him only a minute to figure out that those strange strings are actually referring to the coded time Thursday 14:04
– since the first common capital English letter (case sensitive) shared by the first two strings is the 4th capital letter D
, representing the 4th day in a week; the second common character is the 5th capital letter E
, representing the 14th hour (hence the hours from 0 to 23 in a day are represented by the numbers from 0 to 9 and the capital letters from A
to N
, respectively); and the English letter shared by the last two strings is s
at the 4th position, representing the 4th minute. Now given two pairs of strings, you are supposed to help Sherlock decode the dating time.
Input Specification:
Each input file contains one test case. Each case gives 4 non-empty strings of no more than 60 characters without white space in 4 lines.
Output Specification:
For each test case, print the decoded time in one line, in the format DAY HH:MM
, where DAY
is a 3-character abbreviation for the days in a week – that is, MON
for Monday, TUE
for Tuesday, WED
for Wednesday, THU
for Thursday, FRI
for Friday, SAT
for Saturday, and SUN
for Sunday. It is guaranteed that the result is unique for each case.
Sample Input:
1 | 3485djDkxh4hhGE |
Sample Output:
1 | THU 14:04 |
分析:
本题(与PAT乙级 1014.福尔摩斯的约会 (20 分)是同一道题)有以下四个需要注意的地方:
(1)前面两个字符串中第 1 对相同的大写英文字母表示星期。一个星期7天,故其取值范围为A-G,而不是A-Z。
(2)前面两个字符串中第 2 对相同的字符(第 1 对相同的大写英文字母出现之后)表示钟点(小时)。一天的 0 点到 23 点由数字 0 到 9、以及大写字母 A
到 N
表示。
(3)后面两个字符串中第 1 对相同的英文字母出现的位置(从 0 开始计数)表示分钟。
(4)小时和分钟不足两位数时,需要在前面添0。
1 |
|