PATA1061 Dating

举报
陈沧夜 发表于 2022/04/29 22:19:49 2022/04/29
【摘要】 1061 Dating Sherlock Holmes received a note with some strange strings: Let's date! 3485djDkxh4hhGE 2984akDfkkkkggEdsb s&hgsfdk d&Hyscvnm. It took him only ...

1061 Dating

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, MONfor 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
  2. 2984akDfkkkkggEdsb
  3. s&hgsfdk
  4. d&Hyscvnm

Sample Output:

THU 14:04
 

  
  1. #include<cstdio>
  2. #include<iostream>
  3. #include<cstring>
  4. using namespace std;
  5. int main()
  6. {
  7. char ans1[100],ans2[100],ans3[100],ans4[100];
  8. const char week[7][7]={"MON","TUE","WED","THU","FRI","SAT","SUN"};
  9. cin.get(ans1,100);
  10. getchar();
  11. cin.get(ans2,100);
  12. getchar();
  13. cin.get(ans3,100);
  14. getchar();
  15. cin.get(ans4,100);
  16. getchar();
  17. // printf("%s",ans1);
  18. int len1=strlen(ans1);
  19. int len2=strlen(ans2);
  20. int len3=strlen(ans3);
  21. int len4=strlen(ans4);
  22. int i;
  23. for(i = 0;i<len1&&i<len2;i++)
  24. {
  25. if(ans1[i]==ans2[i]&&ans1[i]>='A'&&ans1[i]<='G')
  26. {
  27. printf("%s ",week[ans1[i]-'A']);break;
  28. }
  29. }
  30. for(i++;i<len1&&i<len2;i++)
  31. {
  32. if(ans1[i]==ans2[i])
  33. {
  34. if(ans1[i]>='0'&&ans1[i]<='9')
  35. {
  36. printf("%02d:",ans1[i]-'0');break;
  37. }
  38. else if(ans1[i]>='A'&&ans1[i]<='N')
  39. {
  40. printf("%02d:",ans1[i]-'A'+10); break;
  41. }
  42. }
  43. }
  44. for(int j=0;j<len3&&j<len4;j++)
  45. {
  46. if(ans3[j]==ans4[j]&&((ans3[j]>='A'&&ans3[j]<='Z')||(ans3[j]>='a'&&ans3[j]<='z')) )
  47. {
  48. printf("%02d",j);break;
  49. }
  50. }
  51. return 0;
  52. }

 

文章来源: blog.csdn.net,作者:沧夜2021,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/CANGYE0504/article/details/88836412

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。