Submission #1307122


Source Code Expand

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp42
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] pos =Console.ReadLine().Split(' ');
            int W = int.Parse(pos[0]);
            int a = int.Parse(pos[1]);
            int b = int.Parse(pos[2]);

            if (a < b)
            {
                int answera = b - (a + W);

                if (answera > 0)
                {
                    Console.WriteLine(answera);
                }
                else if (answera <= 0)
                {
                    Console.WriteLine(0);
                }
            }
            else if (b < a)
            {
                int answerb = a -(b+W);

                if (answerb > 0)
                {
                    Console.WriteLine(answerb);
                }else if (answerb <= 0)
                {
                    Console.WriteLine(0);
                }
            }

        }
    }
}

Submission Info

Submission Time
Task B - NarrowRectanglesEasy
User Brobromimi
Language C# (Mono 4.6.2.0)
Score 0
Code Size 1099 Byte
Status WA
Exec Time 20 ms
Memory 11092 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 3
WA × 1
AC × 8
WA × 2
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt
Case Name Status Exec Time Memory
0_000.txt AC 20 ms 11092 KB
0_001.txt AC 20 ms 9044 KB
0_002.txt AC 20 ms 9044 KB
0_003.txt WA 19 ms 9044 KB
1_004.txt WA 19 ms 11092 KB
1_005.txt AC 20 ms 9044 KB
1_006.txt AC 20 ms 9044 KB
1_007.txt AC 20 ms 11092 KB
1_008.txt AC 20 ms 11092 KB
1_009.txt AC 20 ms 11092 KB