为什么有一个没通过啊

P1425 小鱼的游泳时间

@[hongcpp](/user/326759) 因为您太巨了
by impuk @ 2020-04-30 22:50:37


@[一只爬行者](/user/279700) 是运行时间过长了吗
by hongcpp @ 2020-04-30 23:06:10


@[hongcpp](/user/326759) 不是,看了您的提交记录,是输出答案错误
by Surelysuper @ 2020-04-30 23:08:05


@[蒟蒻跟风侠](/user/234114) 没错啊,正常不就应该是这个么
by hongcpp @ 2020-04-30 23:17:01


@[hongcpp](/user/326759) WA指答案错误
by Surelysuper @ 2020-04-30 23:18:44


@[蒟蒻跟风侠](/user/234114) 那大侠我这到底哪出问题了
by hongcpp @ 2020-04-30 23:22:18


@[hongcpp](/user/326759) 您可以对照下题解的思路看看是哪出问题了
by Surelysuper @ 2020-04-30 23:25:03


@[hongcpp](/user/326759) 试试这个数据 ``` 10 10 11 20 ```
by zhjxaoini @ 2020-04-30 23:34:16


@[zhaojinxi](/user/120026) 这位老哥说的对
by asdqwe @ 2020-05-14 21:45:32


## 多说什么? # 代码 : ``` #include <iostream> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c>>d; int x=c-a,y=d-b; if(y<0){x--;y+=60;} cout<<x<<" "<<y; return 0; } ```
by 一只可爱的猫 @ 2020-09-12 22:09:05


|