結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー mbanmban
提出日時 2017-04-21 02:50:29
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 942 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 108,800 KB
実行使用メモリ 44,544 KB
最終ジャッジ日時 2024-07-20 01:09:12
合計ジャッジ時間 9,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 408 ms
44,544 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 394 ms
36,992 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 378 ms
39,936 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 325 ms
35,840 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 339 ms
38,400 KB
testcase_16 AC 386 ms
37,120 KB
testcase_17 AC 390 ms
36,736 KB
testcase_18 AC 379 ms
36,992 KB
testcase_19 AC 381 ms
39,680 KB
testcase_20 AC 379 ms
39,808 KB
testcase_21 AC 380 ms
39,808 KB
testcase_22 AC 380 ms
36,224 KB
testcase_23 AC 372 ms
36,608 KB
testcase_24 AC 25 ms
19,840 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 32 ms
20,096 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static int N;
    static long K;
    static int[] L;

    static void Main(string[] args)
    {
        N = int.Parse(Console.ReadLine());
        L = Line().Select(int.Parse).ToArray();
        K = long.Parse(Console.ReadLine());

        double min = 0;
        double max = 1e9;
        for(int i = 0; i < 100; i++)
        {
            double mid = (min + max) / 2.0;
            int cnt = L.Sum(ii => ((int)(ii / mid)));
            if (cnt < K)
            {
                max = mid;
            }
            else
            {
                min = mid;
            }
        }

        Console.WriteLine(max);
    }

    static string[] Line()
    {
        return Console.ReadLine().Split(' ');
    }
}
0