29 条题解
信息
- ID
- 612
- 时间
- 1000ms
- 内存
- 125MiB
- 难度
- 4
- 标签
- 递交数
- 1021
- 已通过
- 499
- 上传者
#include using namespace std; int main(){ int a,b,c,d,e,f,g; cin>>a>>b>>c>>d; g=(c60+d)-(a60+b); e=g/60; f=g%60; cout<<e<<" "<<g%60; return 0; }
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,g; cin>>a>>b>>c>>d; g=(60c+d)-(60a+b); e=g/60; f=g%60; cout<<e<<" "<<f; return 0; }
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,x; cin>>a>>b>>c>>d; x=60c+d-60a-b; e=x/60; f=x-60*e; cout<<e<<" "<<f; return 0; }
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,x,z,y; cin>>a>>b>>c>>d; e=a60+b; f=c60+d; x=f-e; z=x/60; y=x%60; cout<<z<<" "<<y; return 0; }
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,x; cin>>a>>b>>c>>d; x=60c+d-60a-b; e=x/60; f=x-60*e; cout<<e<<" "<<f; return 0; }
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,j; cin>>a>>b>>c>>d; e=60c+d-60a-b; f=e/60; j=e%60; cout<<f<<" "<<j; }
👍 👍 👍 👍 👍 `` #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,x; cin>>a>>b>>c>>d; x=60c+d-60a-b; e=x/60; f=x-60*e; cout<<e<<" "<<f; return 0;
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c,d,e,f,x;
cin>>a>>b>>c>>d;
x=60*c+d-60*a-b;
e=x/60;
f=x-60*e;
cout<<e<<" "<<f;
return 0;
}