結果

問題 No.2420 Simple Problem
ユーザー bluemeganebluemegane
提出日時 2023-08-19 16:52:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,346 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 4,868 ms
コンパイル使用メモリ 103,296 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-09-27 05:43:20
合計ジャッジ時間 44,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,792 KB
testcase_01 AC 547 ms
21,760 KB
testcase_02 AC 28 ms
17,920 KB
testcase_03 AC 220 ms
21,760 KB
testcase_04 AC 1,068 ms
21,632 KB
testcase_05 AC 673 ms
21,888 KB
testcase_06 AC 1,313 ms
21,888 KB
testcase_07 AC 1,283 ms
21,888 KB
testcase_08 AC 1,322 ms
21,760 KB
testcase_09 AC 1,277 ms
21,888 KB
testcase_10 AC 1,287 ms
21,760 KB
testcase_11 AC 1,285 ms
21,760 KB
testcase_12 AC 1,276 ms
21,504 KB
testcase_13 AC 1,280 ms
21,760 KB
testcase_14 AC 1,287 ms
21,888 KB
testcase_15 AC 1,273 ms
21,760 KB
testcase_16 AC 1,294 ms
21,760 KB
testcase_17 AC 1,265 ms
21,760 KB
testcase_18 AC 1,275 ms
21,504 KB
testcase_19 AC 1,346 ms
21,888 KB
testcase_20 AC 1,341 ms
21,760 KB
testcase_21 AC 1,317 ms
21,632 KB
testcase_22 AC 1,306 ms
21,632 KB
testcase_23 AC 1,323 ms
21,888 KB
testcase_24 AC 1,298 ms
21,888 KB
testcase_25 AC 1,284 ms
21,632 KB
testcase_26 AC 22 ms
17,664 KB
testcase_27 AC 1,028 ms
21,632 KB
testcase_28 AC 1,043 ms
21,760 KB
testcase_29 AC 1,021 ms
21,760 KB
testcase_30 AC 1,037 ms
21,888 KB
testcase_31 AC 1,015 ms
21,888 KB
testcase_32 AC 21 ms
17,792 KB
testcase_33 AC 520 ms
21,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        var T = int.Parse(Console.ReadLine().Trim());
        while (T-- > 0)
        {

            string[] line = Console.ReadLine().Trim().Split(' ');
            var a = long.Parse(line[0]);
            var b = long.Parse(line[1]);
            getAns(a, b);
        }
    }
    static bool check(long a, long b, long t)
    {
        var w = t * t - a - b;
        return 4 * a * b < w * w;
    }
    static void getAns(long a, long b)
    {
        var ok = (long)Sqrt(a) + (long)Sqrt(b) + 10;
        var ng = (long)Sqrt(a) + (long)Sqrt(b) - 1;
        while (ok - ng > 1)
        {
            var mid = ng + (ok - ng) / 2L;
            if (check(a, b, mid)) ok = mid;
            else ng = mid;
        }
        Console.WriteLine(ok);
    }
}
0