Conditional Statements - Exercise - 07. World Swimming Record
Здравейте, колеги!
Имам въпрос относно следната задача:
https://judge.softuni.bg/Contests/Practice/Index/1171#6
Това е моето решение :
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double recordInSeconds, distanceInMeters, timeInSecondsPerMeter;
cin>> recordInSeconds >> distanceInMeters >> timeInSecondsPerMeter;
double resTimePerFiftMeters = floor(distanceInMeters / 15);
double plusSeconds = resTimePerFiftMeters * 12.5;
double swimmingTime = distanceInMeters * timeInSecondsPerMeter;
double finalTime = swimmingTime + plusSeconds;
double secondsSlower = finalTime - recordInSeconds;
cout.setf(ios::fixed);
cout.precision(2);
if(finalTime < recordInSeconds){
cout << "Yes, he succeeded! The new world record is " << finalTime << " seconds."<< endl;
} else if(finalTime > recordInSeconds){
cout << "No, he failed! He was "<< secondsSlower << " seconds slower." << endl;
}
return 0;
}
В CodeBlocks след проверките задачата е вярна, но когато предам задачата в Judge, получавам 80/100 точки след като цъкна на details, излиза следния проблем:
The process executing your submission for this test may not have received the output successfully. Please try to submit again the same solution. If the result does not change, then search the error in the submission itself.
Ще съм много благодарен, ако някой може да ми обясни къде ми е грешката и защо не мога да взема максималния брой точки.
Благодаря предварително. :)
Прав си, забравил съм случая, в който може да е равно. Много ти благодаря. :)