結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nanophoto12nanophoto12
提出日時 2014-11-17 23:20:32
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 834 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 111,904 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2025-01-02 16:52:49
合計ジャッジ時間 66,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
85,888 KB
testcase_01 AC 27 ms
25,984 KB
testcase_02 AC 92 ms
66,944 KB
testcase_03 AC 158 ms
75,904 KB
testcase_04 AC 187 ms
43,904 KB
testcase_05 AC 186 ms
53,404 KB
testcase_06 AC 185 ms
76,032 KB
testcase_07 AC 189 ms
46,592 KB
testcase_08 AC 195 ms
54,572 KB
testcase_09 TLE -
testcase_10 AC 177 ms
77,952 KB
testcase_11 AC 194 ms
43,520 KB
testcase_12 AC 177 ms
45,552 KB
testcase_13 AC 182 ms
40,448 KB
testcase_14 AC 183 ms
40,960 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 27 ms
20,480 KB
testcase_25 AC 34 ms
21,376 KB
testcase_26 AC 32 ms
21,120 KB
testcase_27 AC 36 ms
20,992 KB
testcase_28 AC 59 ms
23,040 KB
testcase_29 AC 45 ms
22,528 KB
testcase_30 AC 36 ms
58,752 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 System.Linq;

internal class Program
{
    public static void Main(string[] args)
    {
        var n = long.Parse(Console.ReadLine());
        var ls = Console.ReadLine().Split(' ').Select(long.Parse).ToArray();
        var k = long.Parse(Console.ReadLine());

        double minValue = 0;
        double maxValue = 1e9;

        while (maxValue - minValue > 1e-10)
        {
            double mid = (minValue + maxValue)/2d;
            long sum = 0;
            for (int i = 0; i < n; i++)
            {
                sum += (long)(ls[i]/mid);
            }
            if (sum >= k)
            {
                minValue = mid;
            }
            else
            {
                maxValue = mid;
            }
        }
        Console.WriteLine(minValue);
    }
}
0