迴圈
輸入時間
判別所需時間是否小於等於剩餘時間(單位: 分鐘)
輸出Yes / No
#include<iostream>
using namespace std;
int main()
{
int N, H1, M1, H2, M2, M3;
while(cin >> N)
while(N--)
{
cin >> H1 >> M1 >> H2 >> M2>> M3;
M3 <= (H2 - H1)*60 + M2 - M1 ? cout << "Yes\n" : cout << "No\n";
}
return 0;
}
全站熱搜
留言列表