結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nanophoto12nanophoto12
提出日時 2014-11-17 23:23:47
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 834 bytes
コンパイル時間 1,307 ms
コンパイル使用メモリ 112,032 KB
実行使用メモリ 102,224 KB
最終ジャッジ日時 2025-01-02 16:56:37
合計ジャッジ時間 65,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
102,224 KB
testcase_01 AC 33 ms
35,772 KB
testcase_02 AC 105 ms
77,160 KB
testcase_03 AC 170 ms
92,172 KB
testcase_04 AC 204 ms
53,532 KB
testcase_05 AC 206 ms
51,364 KB
testcase_06 AC 209 ms
92,288 KB
testcase_07 AC 213 ms
56,472 KB
testcase_08 AC 214 ms
54,568 KB
testcase_09 TLE -
testcase_10 AC 194 ms
88,588 KB
testcase_11 AC 201 ms
46,424 KB
testcase_12 AC 187 ms
45,564 KB
testcase_13 AC 200 ms
48,536 KB
testcase_14 AC 206 ms
48,984 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 32 ms
26,532 KB
testcase_25 AC 42 ms
29,012 KB
testcase_26 AC 40 ms
27,188 KB
testcase_27 AC 38 ms
27,036 KB
testcase_28 AC 64 ms
27,928 KB
testcase_29 AC 50 ms
27,928 KB
testcase_30 AC 41 ms
72,712 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