PAT 甲级 1006 Sign In and Sign Out
发布日期:2021-07-01 03:08:44 浏览次数:2 分类:技术文章

本文共 1928 字,大约阅读时间需要 6 分钟。

1006 Sign In and Sign Out (25 point(s))

At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you are supposed to find the ones who have unlocked and locked the door on that day.

Input Specification:

Each input file contains one test case. Each case contains the records for one day. The case starts with a positive integer M, which is the total number of records, followed by M lines, each in the format:

ID_number Sign_in_time Sign_out_time

where times are given in the format HH:MM:SS, and ID_number is a string with no more than 15 characters.

Output Specification:

For each test case, output in one line the ID numbers of the persons who have unlocked and locked the door on that day. The two ID numbers must be separated by one space.

Note: It is guaranteed that the records are consistent. That is, the sign in time must be earlier than the sign out time for each person, and there are no two persons sign in or out at the same moment.

Sample Input:

3CS301111 15:30:28 17:00:10SC3021234 08:00:00 11:25:25CS301133 21:45:00 21:58:40

Sample Output:

SC3021234 CS301133

Experiential Summing-up

this problem is so easy to solve, so I'm not explaining other about it.  

(The purpose of using English to portray my solution is that to exercise the ability of my expression of English and accommodate PAT advanced level's style.We can make progress together by reading and comprehending it. Please forgive my basic grammar's and word's error. Of course, I would appreciated it if you can point out my grammar's and word's error in comment section.( •̀∀•́ ) Furthermore, Big Lao please don't laugh at me because I just a English beginner settle for CET6    _(:з」∠)_  )

Accepted Code

#include 
#include
const int maxn=110;bool compare(int a[],int b[]){ if(a[0]!=b[0]) return a[0]

 

转载地址:https://meteorrain.blog.csdn.net/article/details/86515802 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:PAT 甲级 1007 Maximum Subsequence Sum
下一篇:PAT 甲级 1005 Spell It Right

发表评论

最新留言

逛到本站,mark一下
[***.202.152.39]2024年04月21日 22时26分58秒