結果

問題 No.91 赤、緑、青の石
ユーザー nanophoto12nanophoto12
提出日時 2014-12-10 00:55:52
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,098 bytes
コンパイル時間 939 ms
コンパイル使用メモリ 113,744 KB
実行使用メモリ 29,056 KB
最終ジャッジ日時 2024-06-11 19:08:12
合計ジャッジ時間 2,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,264 KB
testcase_01 AC 27 ms
27,284 KB
testcase_02 AC 26 ms
25,364 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 25 ms
23,224 KB
testcase_07 AC 26 ms
27,140 KB
testcase_08 AC 26 ms
25,100 KB
testcase_09 WA -
testcase_10 AC 25 ms
25,232 KB
testcase_11 AC 25 ms
27,020 KB
testcase_12 AC 25 ms
27,148 KB
testcase_13 AC 25 ms
25,368 KB
testcase_14 AC 25 ms
27,156 KB
testcase_15 AC 25 ms
25,112 KB
testcase_16 AC 25 ms
25,132 KB
testcase_17 AC 25 ms
25,100 KB
testcase_18 AC 25 ms
27,144 KB
testcase_19 AC 25 ms
25,112 KB
testcase_20 AC 26 ms
24,988 KB
testcase_21 AC 26 ms
25,140 KB
testcase_22 AC 25 ms
24,984 KB
testcase_23 AC 26 ms
27,404 KB
testcase_24 AC 24 ms
23,088 KB
testcase_25 AC 26 ms
23,216 KB
testcase_26 WA -
testcase_27 AC 25 ms
27,148 KB
testcase_28 AC 25 ms
25,108 KB
testcase_29 AC 25 ms
27,276 KB
testcase_30 AC 25 ms
25,368 KB
testcase_31 AC 25 ms
25,240 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.Generic;
using System.Linq;
using System.Text;

namespace Yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            var line = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
            var right = line.Max();
            var left = line.Min();
            while (right - left > 1)
            {
                var mid = (right + left)/2;
                var sum = 0;
                for (int i = 0; i < line.Length; i++)
                {
                    if (line[i] >= mid)
                    {
                        sum += line[i] - mid;
                    }
                    else
                    {
                        sum -= (mid - line[i])*2;
                    }
                }
                if (sum >= 0)
                {
                    left = mid;
                }
                else
                {
                    right = mid;
                }
            }
            Console.WriteLine(left);
        }
    }
}
0