0
已解决
於海洋
高级光能
高级光能
#include<bits/stdc++.h>
using namespace std;
/*
【样例】
9 10
10 50
100
10+50+1*60
9 10
11 50
160
=9 0
11 40
*/
int main(){
int a,b,c,d;
cin>>a>>b>>c>>d;
if(b<d){
cout<<(c-a)*60+(d-b);
}else if(b==d&&c==a){
cout<<0;
}else{
cout<<(c-a)*60+(b-d);
}
return 0;
}
50分,求大佬指点迷津
於海洋在2022-09-12 16:49:51追加了内容
70分,不是50分