Задача Шивашки цех- верен резултат при стартиране на VS, 0/100 точки при тест в Judge
Здравейте,
Judge не ми дава точки при задача, която тествам нa VS и ми отпечатва коректен изход след въвеждане на входа. Някой може ли да ми каже защо, ще съм благодарна? Ето задачата, разписана с 10 броя маси:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Elito
{
class Program
{
static void Main(string[] args)
{
int numberOfCloths = int.Parse(Console.ReadLine());
double lengthOfTables = double.Parse(Console.ReadLine());
double widthOfTables = double.Parse(Console.ReadLine());
double aCloth = lengthOfTables + 2 * 0.30;
double bCloth = widthOfTables + 2 * 0.30;
double totalAreaOfCloths = numberOfCloths * aCloth * bCloth;
double aDecorationCloth = lengthOfTables / 2;
double totalAreaOfDecorationCloth = 10 * aDecorationCloth * aDecorationCloth;
double priceOfCLothsUSD = totalAreaOfCloths * 7;
double priceOfDecorationClothUSD = totalAreaOfDecorationCloth * 9;
double totalClothPriceUSD = priceOfCLothsUSD + priceOfDecorationClothUSD;
Console.WriteLine($"{totalClothPriceUSD:f2} USD");
Console.WriteLine($"{(totalClothPriceUSD*1.85):f2} BGN");
}
}
}