国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

PAT A1061. Dating (20)

2019-11-11 03:09:42
字體:
來源:轉載
供稿:網友

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:
3485djDkxh4hhGE 2984akDfkkkkggEdsb s&hgsfdk d&HyscvnmSample Output:
THU 14:04
#include <cstdio>#include <algorithm>#include <cmath>#include <cstring>#define Max 100using namespace std;int getl(int a,int b){	if(a>b) return b;	else return a;}int main(){	char a[Max],b[Max],c[Max],d[Max];	char D[8][8]={"MON","TUE","WED","THU","FRI","SAT","SUN"};	char S[25][8]={"00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"};	scanf("%s",a);	scanf("%s",b);	scanf("%s",c);	scanf("%s",d);	int f=0,l1,l2;	l1=getl(strlen(a),strlen(b));	l2=getl(strlen(c),strlen(d));	for(int i=0;i<l1;i++)	{		if(f==0)		{			if(a[i]>='A'&&a[i]<='G')			{				if(b[i]==a[i]){				printf("%s ",D[a[i]-'A']);				f=1;				}			}		}		else {			if(a[i]>='0'&&a[i]<='9')			{				if(b[i]==a[i])				{					printf("%s:",S[a[i]-'0']);					break;				}			}			else if(a[i]>='A'&&a[i]<='N')			{				if(b[i]==a[i])				{					printf("%s:",S[a[i]-'A'+10]);					break;				}			}		}	}	for(int i=0;i<l2;i++)	{		if((c[i]>='a'&&c[i]<='z')||(c[i]>='A'&&c[i]<='Z')){		if(c[i]==d[i])		{								printf("%02d/n",i);					break;					}		}	}	system("pause");	return 0;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 江油市| 安国市| 新宁县| 麻江县| 广南县| 冕宁县| 余江县| 台湾省| 开化县| 孟津县| 漯河市| 岳阳市| 岳阳县| 望奎县| 兴隆县| 汉沽区| 秀山| 彭阳县| 韶关市| 普兰店市| 海城市| 子长县| 饶河县| 新宁县| 巴马| 永年县| 福清市| 太康县| 博爱县| 铜梁县| 宁明县| 仁怀市| 田东县| 巩义市| 逊克县| 遂溪县| 祁连县| 贺兰县| 东乡族自治县| 汾西县| 西丰县|