結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー mbanmban
提出日時 2017-04-21 02:53:01
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 434 ms / 5,000 ms
コード長 944 bytes
コンパイル時間 2,881 ms
コンパイル使用メモリ 107,520 KB
実行使用メモリ 44,672 KB
最終ジャッジ日時 2024-11-08 12:00:35
合計ジャッジ時間 14,054 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 434 ms
44,672 KB
testcase_01 AC 28 ms
20,096 KB
testcase_02 AC 177 ms
27,136 KB
testcase_03 AC 315 ms
36,864 KB
testcase_04 AC 412 ms
36,992 KB
testcase_05 AC 412 ms
37,120 KB
testcase_06 AC 415 ms
37,120 KB
testcase_07 AC 419 ms
39,936 KB
testcase_08 AC 421 ms
39,936 KB
testcase_09 AC 419 ms
39,936 KB
testcase_10 AC 378 ms
36,224 KB
testcase_11 AC 398 ms
36,480 KB
testcase_12 AC 363 ms
35,968 KB
testcase_13 AC 388 ms
39,040 KB
testcase_14 AC 400 ms
39,552 KB
testcase_15 AC 369 ms
38,528 KB
testcase_16 AC 412 ms
37,120 KB
testcase_17 AC 411 ms
37,120 KB
testcase_18 AC 415 ms
37,248 KB
testcase_19 AC 416 ms
40,064 KB
testcase_20 AC 420 ms
40,064 KB
testcase_21 AC 421 ms
39,936 KB
testcase_22 AC 379 ms
36,352 KB
testcase_23 AC 401 ms
36,736 KB
testcase_24 AC 28 ms
19,840 KB
testcase_25 AC 39 ms
20,608 KB
testcase_26 AC 36 ms
20,352 KB
testcase_27 AC 35 ms
20,480 KB
testcase_28 AC 93 ms
23,552 KB
testcase_29 AC 62 ms
22,016 KB
testcase_30 AC 39 ms
20,480 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.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;
            long cnt = L.Sum(ii => ((long)(ii / mid)));
            if (cnt < K)
            {
                max = mid;
            }
            else
            {
                min = mid;
            }
        }

        Console.WriteLine(max);
    }

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