#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
const int maxn = 1005;
int main() {
char list[4][65];
char Date[7][10] = {"MON","TUE","WED","THU","FRI","SAT","SUN"};
int date = 0,hour = 0,min = 0;
bool isfirst = true,isfind = false,ischeck = false;
for(int i = 0;i < 4;i++)
cin >> list[i];
for(int i = 0;i < 60;i++){
if(!isfirst && !ischeck){
if(list[0][i] == list[1][i]){
if(('0' <= list[0][i]) && (list[0][i] <= '9')) {
hour = list[0][i] - '0';
ischeck = true;
}
else if(('A' <= list[0][i]) && (list[0][i] <= 'N')){
hour = list[0][i] - 'A' + 10;
ischeck = true;
}
}
}
if((list[0][i] == list[1][i]) && isfirst) {
if (('A' <= list[0][i]) && (list[0][i] <= 'G')) {
date = list[0][i] - 'A';
isfirst = false;
}
}
if((list[2][i] == list[3][i]) && !isfind) {
if((('A' <= list[2][i]) && (list[2][i] <= 'Z')) || (('a' <= list[2][i]) && (list[2][i] <= 'z'))){
min = i;
isfind = true;
}
}
}
printf("%s %02d:%02d",Date[date],hour,min);
return 0;
}
【PAT B 1014】福尔摩斯的约会
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 传送门 https://pintia.cn/problem-sets/994805260223102976/pro...
- 题目 链接:PAT (Basic Level) Practice 1014 福尔摩斯的约会 大侦探福尔摩斯接到一张...
- 题目 大侦探福尔摩斯接到一张奇怪的字条:我们约会吧! 3485djDkxh4hhGE 2984akDfkkkkgg...
- 题目信息 大侦探福尔摩斯接到一张奇怪的字条:“我们约会吧! 3485djDkxh4hhGE 2984akDfkkk...