結果

問題 No.1042 愚直大学
ユーザー bluemeganebluemegane
提出日時 2020-12-12 13:11:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 109,988 KB
実行使用メモリ 27,308 KB
最終ジャッジ日時 2024-09-19 21:55:43
合計ジャッジ時間 3,238 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
27,176 KB
testcase_01 AC 25 ms
24,752 KB
testcase_02 AC 26 ms
24,924 KB
testcase_03 AC 25 ms
25,144 KB
testcase_04 AC 25 ms
25,020 KB
testcase_05 AC 25 ms
27,064 KB
testcase_06 AC 25 ms
24,796 KB
testcase_07 AC 26 ms
27,308 KB
testcase_08 AC 25 ms
25,308 KB
testcase_09 AC 25 ms
27,200 KB
testcase_10 AC 25 ms
26,960 KB
testcase_11 AC 25 ms
24,880 KB
testcase_12 AC 24 ms
24,924 KB
testcase_13 AC 24 ms
25,180 KB
testcase_14 AC 26 ms
27,060 KB
testcase_15 AC 25 ms
27,072 KB
testcase_16 AC 24 ms
24,876 KB
testcase_17 AC 25 ms
22,964 KB
testcase_18 AC 24 ms
25,184 KB
testcase_19 AC 25 ms
25,152 KB
testcase_20 AC 25 ms
26,964 KB
testcase_21 AC 24 ms
25,056 KB
testcase_22 AC 25 ms
26,940 KB
testcase_23 AC 23 ms
25,052 KB
testcase_24 AC 25 ms
25,176 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
{
    public static int p, q;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        p = int.Parse(line[0]);
        q = int.Parse(line[1]);
        getAns();

    }
    static bool calc(double t)
    {
        var p2 = (double)p;
        var q2 = (double)q;
        var c1 = t * t;
        var c2 = p2 + q2 * t * Log10(t) / Log10(2);
        return c1 - c2 <= 0d;
    }
    static void getAns()
    {
        var ok = 1d;
        var ng = 1000000000000000000d;
        var t = 0;
        while (t < 100)
        {
            var mid = ok + (ng - ok) / 2d;
            if (calc(mid)) ok = mid;
            else ng = mid;
            t++;
        }
        Console.WriteLine(ok);
    }
}
0