結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー Yuuki77Yuuki77
提出日時 2018-01-07 16:21:49
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 942 bytes
コンパイル時間 754 ms
コンパイル使用メモリ 112,936 KB
実行使用メモリ 95,504 KB
最終ジャッジ日時 2024-12-23 10:09:57
合計ジャッジ時間 38,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 TLE -
testcase_07 RE -
testcase_08 RE -
testcase_09 TLE -
testcase_10 RE -
testcase_11 RE -
testcase_12 TLE -
testcase_13 RE -
testcase_14 RE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 RE -
testcase_26 RE -
testcase_27 TLE -
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.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace abs001_2
{
    class Program
    {
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());
            int[] L = Array.ConvertAll(Console.ReadLine().Split(' '),s => int.Parse(s));
            int K = int.Parse(Console.ReadLine());

            int min = 0;
            int max = int.MaxValue;
       
            for (var i = 0; i < 100; i++)
            {
                var middle = (max + min) / 2;

                if (check(middle, K)) min = middle;
                else max = middle;
            }

            Console.WriteLine(min);
        }

       static bool check(int x,int k)
        {
            int sum = 0;
            for(var i = 0; i < k; i++)
            {
                sum = x / k;
            }
            return sum == k;
        }

    }
}
0