45102023-03-29 11:45:11Leventusz19Sakktábla (75 pont)csharpRuntime error 0/7535ms24792 KiB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Sakktáblatorta
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] in1 = Console.ReadLine().Split().Select(int.Parse).ToArray();
            int N = in1[0], M = in1[1];
            int min = (in1[0] > in1[1]) ? in1[1] : in1[0];
            Console.WriteLine(Math.Floor(Math.Sqrt(min * 2 + 1)));
        }
    }
}
SubtaskSumTestVerdictTimeMemory
base0/75
1Runtime error0/035ms21104 KiB
2Runtime error0/035ms21672 KiB
3Runtime error0/534ms21848 KiB
4Runtime error0/535ms22548 KiB
5Runtime error0/535ms23140 KiB
6Runtime error0/534ms23232 KiB
7Runtime error0/535ms23484 KiB
8Runtime error0/534ms23788 KiB
9Runtime error0/535ms23872 KiB
10Runtime error0/534ms23848 KiB
11Runtime error0/734ms23952 KiB
12Runtime error0/735ms24100 KiB
13Runtime error0/735ms24644 KiB
14Runtime error0/734ms24604 KiB
15Runtime error0/735ms24792 KiB