結果

問題 No.2420 Simple Problem
ユーザー kakel-sankakel-san
提出日時 2023-10-09 12:57:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 1,234 ms
コンパイル使用メモリ 111,756 KB
実行使用メモリ 38,832 KB
最終ジャッジ日時 2024-07-26 18:29:53
合計ジャッジ時間 17,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
25,516 KB
testcase_01 AC 204 ms
34,240 KB
testcase_02 AC 33 ms
25,648 KB
testcase_03 AC 96 ms
29,768 KB
testcase_04 AC 366 ms
35,024 KB
testcase_05 AC 247 ms
32,764 KB
testcase_06 AC 453 ms
36,724 KB
testcase_07 AC 452 ms
36,796 KB
testcase_08 AC 452 ms
38,628 KB
testcase_09 AC 450 ms
36,772 KB
testcase_10 AC 455 ms
38,684 KB
testcase_11 AC 452 ms
38,584 KB
testcase_12 AC 451 ms
36,456 KB
testcase_13 AC 455 ms
38,644 KB
testcase_14 AC 451 ms
38,568 KB
testcase_15 AC 453 ms
36,656 KB
testcase_16 AC 454 ms
36,732 KB
testcase_17 AC 451 ms
36,788 KB
testcase_18 AC 453 ms
38,624 KB
testcase_19 AC 453 ms
38,760 KB
testcase_20 AC 455 ms
38,832 KB
testcase_21 AC 452 ms
36,584 KB
testcase_22 AC 451 ms
38,464 KB
testcase_23 AC 451 ms
36,524 KB
testcase_24 AC 463 ms
36,680 KB
testcase_25 AC 455 ms
38,588 KB
testcase_26 AC 30 ms
27,180 KB
testcase_27 AC 366 ms
34,912 KB
testcase_28 AC 366 ms
37,228 KB
testcase_29 AC 366 ms
36,996 KB
testcase_30 AC 363 ms
37,008 KB
testcase_31 AC 372 ms
36,964 KB
testcase_32 AC 30 ms
27,488 KB
testcase_33 AC 201 ms
33,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new ulong[t];
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            var (a, b) = (c[0], c[1]);
            ans[u] = Problem((ulong)a, (ulong)b);
        }
        WriteLine(string.Join("\n", ans));
    }
    static ulong Problem(ulong a, ulong b)
    {
        checked {
            var ok = (ulong)((Math.Sqrt(a) + Math.Sqrt(b)) * 1.1 + 1);
            var ng = (ulong)0;
            while (ok - ng > 1)
            {
                var mid = (ok + ng) / 2;
                if (mid * mid < a + b) ng = mid;
                else if ((mid * mid - a - b) * (mid * mid - a - b) > 4 * a * b) ok = mid;
                else ng = mid;
            }
            return ok;
        }
    }
}
0