华师一附中OI组

标题: P1425 小鱼的游泳时间 [打印本页]

作者: vc_vitamine    时间: 2018-6-8 15:44
标题: P1425 小鱼的游泳时间
https://www.luogu.org/problemnew/show/P1425

题目描述伦敦奥运会要到了,小鱼在拼命练习游泳准备参加游泳比赛,可怜的小鱼并不知道鱼类是不能参加人类的奥运会的。这一天,小鱼给自己的游泳时间做了精确的计时(本题中的计时都按24小时制计算),它发现自己从a时b分一直游泳到当天的c时d分,请你帮小鱼计算一下,它这天一共游了多少时间呢?小鱼游的好辛苦呀,你可不要算错了哦。
输入输出格式输入格式:
一行内输入4个整数,分别表示a,b,c,d。
输出格式:
一行内输出2个整数e和f,用空格间隔,依次表示小鱼这天一共游了多少小时多少分钟。其中表示分钟的整数f应该小于60。
输入输出样例输入样例#1: 12 50 19 10
输出样例#1: 6 20





作者: tongyuze    时间: 2018-6-14 22:53
#include<iostream>
using namespace std;
int x,y;
int main()
{
    cin>>x;
    if(x<=150) y=0.4463*x;
    cout<<y;
    else if(x<=400&&x>150) y=0.4663*(x-150)+69.945;
    cout<<y;
    else y=183.52+(x-400)*0.5663;
    cout<<y;
    return 0;
}
作者: tongyuze    时间: 2018-6-15 13:52
tongyuze 发表于 2018-6-14 22:53
#include
using namespace std;
int x,y;

发错了!!!!!!!!!!!
作者: tongyuze    时间: 2018-6-15 13:53
#include<iostream>
using namespace std;
int a,b,c,d,e;
int main()
{
   cin>>a>>b>>c>>d;
   e=(60*c+d)-(60*a+b);
   cout<<e;
   return 0;
}

作者: 倚窗倾听风吹雨    时间: 2018-6-27 07:39
  1. #include<iostream>
  2. using namespace std;
  3. int a,b,c,d,e,f,st,en,la;
  4. int main()
  5. {
  6.     cin>>a>>b>>c>>d;
  7.     st=a*60+b;
  8.     en=c*60+d;
  9.     la=en-st;
  10.     e=la/60;
  11.     f=la%60;
  12.     cout<<e<<" "<<f;
  13.     return 0;
  14. }
复制代码


作者: WJL    时间: 2018-7-2 22:10
  1. #include<iostream>
  2. using namespace std;
  3. int a,b,c,d,e,f;
  4. int main()
  5. {
  6.     cin>>a>>b>>c>>d;
  7.     e=c-a;
  8.     f=d-b;
  9.     if(f<0)
  10.     {
  11.         e=e-1;
  12.         f+=60;
  13.     }
  14.     cout<<e<<' '<<f;
  15.     return 0;
  16. }
复制代码

作者: 吴语林    时间: 2018-7-29 23:51
  1. #include <cstdio>
  2. #include <algorithm>
  3. #include <iostream>
  4. #include <cmath>
  5. #include <cstring>
  6. #include <map>
  7. #include <string>
  8. #include <vector>
  9. #include <queue>
  10. using namespace std;
  11. int main()
  12. {
  13.     int n,m,a,b;
  14.     scanf("%d%d%d%d",&a,&b,&n,&m);
  15.     int s=n-a,t=m-b;
  16.     if(t<0) t+=60,s--;
  17.     printf("%d %d",s,t);
  18.     return 0;
  19. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2