ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1224. Spiral

What is Output Limit Exceded?
Posted by XAMelleOH 9 Mar 2007 20:24
My prog:

using System;
using System.Collections.Generic;
using System.Text;

namespace Timus
{
    class Program
    {
        static void Main()
        {
            string[] num = Console.ReadLine().Split(' ');
            Console.Write((long)2 * Math.Min(long.Parse(num[0]), long.Parse(num[1])) - 2);
        }
    }
}
The problem with output limit in C# is under investigation (-)
Posted by Vladimir Yakovlev (USU) 10 Mar 2007 00:15


Edited by author 10.03.2007 00:17
Problem is fixed (-)
Posted by Vladimir Yakovlev (USU) 11 Mar 2007 04:00
Re: Problem is fixed (-)
Posted by XAMelleOH 11 Mar 2007 05:03
Thank's a lot.