結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tsushimatsushima
提出日時 2020-01-02 20:54:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 283 ms / 5,000 ms
コード長 772 bytes
コンパイル時間 5,486 ms
コンパイル使用メモリ 113,448 KB
実行使用メモリ 44,672 KB
最終ジャッジ日時 2024-11-08 13:07:01
合計ジャッジ時間 13,034 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
44,672 KB
testcase_01 AC 29 ms
19,840 KB
testcase_02 AC 120 ms
27,136 KB
testcase_03 AC 205 ms
37,120 KB
testcase_04 AC 257 ms
37,248 KB
testcase_05 AC 255 ms
36,864 KB
testcase_06 AC 255 ms
37,120 KB
testcase_07 AC 266 ms
40,192 KB
testcase_08 AC 267 ms
40,064 KB
testcase_09 AC 268 ms
39,936 KB
testcase_10 AC 236 ms
36,096 KB
testcase_11 AC 245 ms
36,608 KB
testcase_12 AC 227 ms
35,968 KB
testcase_13 AC 248 ms
38,912 KB
testcase_14 AC 256 ms
39,808 KB
testcase_15 AC 234 ms
38,272 KB
testcase_16 AC 256 ms
36,992 KB
testcase_17 AC 256 ms
37,120 KB
testcase_18 AC 256 ms
37,120 KB
testcase_19 AC 272 ms
40,064 KB
testcase_20 AC 266 ms
40,192 KB
testcase_21 AC 266 ms
40,064 KB
testcase_22 AC 237 ms
36,352 KB
testcase_23 AC 245 ms
36,992 KB
testcase_24 AC 29 ms
19,968 KB
testcase_25 AC 39 ms
20,864 KB
testcase_26 AC 35 ms
20,736 KB
testcase_27 AC 35 ms
20,224 KB
testcase_28 AC 70 ms
22,656 KB
testcase_29 AC 52 ms
22,016 KB
testcase_30 AC 40 ms
20,864 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;
using System.Collections.Generic;

namespace Algorithm
{
    class Program
    {
        static void Main(string[] args)
        {
            var N = int.Parse(Console.ReadLine());
            var L = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var K = long.Parse(Console.ReadLine());

            var ng = 0D;
            var ok = 1000000000D;

            for (var i = 0; i < 100; i++)
            {
                var mid = (double)((ok + ng) / 2);
                var tmp = 0L;
                for (var j = 0; j < N; j++)
                    tmp += (long)(L[j] / mid);

                if (tmp >= K) ng = mid;
                else ok = mid;
            }

            Console.WriteLine(ng);

        }
    }
}
0