結果

問題 No.576 E869120 and Rings
ユーザー やまじゅんやまじゅん
提出日時 2017-10-23 09:01:47
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,186 bytes
コンパイル時間 2,640 ms
コンパイル使用メモリ 112,176 KB
実行使用メモリ 59,904 KB
最終ジャッジ日時 2024-11-21 15:37:38
合計ジャッジ時間 61,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 27 ms
26,812 KB
testcase_23 AC 25 ms
26,800 KB
testcase_24 AC 24 ms
25,892 KB
testcase_25 AC 25 ms
24,632 KB
testcase_26 AC 24 ms
25,900 KB
testcase_27 AC 25 ms
26,740 KB
testcase_28 AC 26 ms
26,836 KB
testcase_29 AC 24 ms
59,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
class Program
    {
        private static char[] gems;
        private static int num;
        private static double result = 0;

        static void Main(string[] args)
        {
            num = int.Parse(Console.ReadLine().Split(' ')[1]);

            string line = Console.ReadLine();
            int lineLength = line.Length;
            line += line;

            gems = line.ToCharArray();

            while (num <= lineLength)
            {
                for (int i = 0; i < lineLength; i++)
                {
                    int blueNum = GetBlueGem(i);

                    double ratio = (double)blueNum / (double)num;

                    if (ratio > result)
                    {
                        result = ratio;
                    }
                }
                num++;
            }

            Console.WriteLine(result);
        }

        private static int GetBlueGem(int index)
        {
            int ret = 0;

            for (int i = 0; i < num; i++)
            {
                if(gems[index + i] == '1')
                {
                    ret++;
                }
            }

            return ret;
        } 
    }
0