結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー nanophoto12nanophoto12
提出日時 2014-11-28 00:01:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 1,031 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 112,824 KB
実行使用メモリ 31,836 KB
最終ジャッジ日時 2024-06-26 07:14:44
合計ジャッジ時間 2,990 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
26,288 KB
testcase_01 AC 64 ms
29,976 KB
testcase_02 AC 33 ms
27,396 KB
testcase_03 AC 32 ms
25,528 KB
testcase_04 AC 33 ms
27,564 KB
testcase_05 AC 65 ms
29,740 KB
testcase_06 AC 33 ms
27,516 KB
testcase_07 AC 32 ms
25,400 KB
testcase_08 AC 33 ms
25,344 KB
testcase_09 AC 34 ms
27,520 KB
testcase_10 AC 33 ms
25,268 KB
testcase_11 AC 33 ms
25,528 KB
testcase_12 AC 33 ms
27,440 KB
testcase_13 AC 32 ms
25,272 KB
testcase_14 AC 53 ms
24,612 KB
testcase_15 AC 43 ms
26,292 KB
testcase_16 AC 58 ms
27,332 KB
testcase_17 AC 44 ms
26,132 KB
testcase_18 AC 58 ms
29,348 KB
testcase_19 AC 51 ms
28,544 KB
testcase_20 AC 64 ms
29,740 KB
testcase_21 AC 38 ms
25,784 KB
testcase_22 AC 46 ms
26,216 KB
testcase_23 AC 63 ms
27,848 KB
testcase_24 AC 65 ms
31,836 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;

class Probram79
{
    public static void Main(string[] args)
    {
        int n = int.Parse(Console.ReadLine());
        var array = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        var dictionary = new Dictionary<int, int>();
        for (int i = 0; i < n; i++)
        {
            int level = array[i];
            if (dictionary.ContainsKey(level))
            {
                dictionary[level]++;
            }
            else
            {
                dictionary.Add(level,1);
            }
        }
        var keys = dictionary.Keys.ToArray();
        var values = dictionary.Values.ToArray();
        var max = values.Max();
        int maxValue = int.MinValue;
        for (int i = 0; i < keys.Length; i++)
        {
            if (values[i] == max)
            {
                maxValue = Math.Max(maxValue, keys[i]);
            }
        }
        Console.WriteLine(maxValue);
    }
}
0