結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー MoonOnRainMoonOnRain
提出日時 2018-07-25 09:44:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 860 bytes
コンパイル時間 2,808 ms
コンパイル使用メモリ 116,388 KB
実行使用メモリ 33,948 KB
最終ジャッジ日時 2024-06-25 13:19:48
合計ジャッジ時間 5,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
26,744 KB
testcase_01 AC 61 ms
33,948 KB
testcase_02 AC 35 ms
25,204 KB
testcase_03 AC 39 ms
26,276 KB
testcase_04 AC 40 ms
28,012 KB
testcase_05 AC 60 ms
33,276 KB
testcase_06 AC 34 ms
25,332 KB
testcase_07 AC 34 ms
25,204 KB
testcase_08 AC 39 ms
26,020 KB
testcase_09 AC 40 ms
26,156 KB
testcase_10 AC 35 ms
25,548 KB
testcase_11 AC 40 ms
25,844 KB
testcase_12 AC 38 ms
26,200 KB
testcase_13 AC 38 ms
23,808 KB
testcase_14 AC 52 ms
28,208 KB
testcase_15 AC 45 ms
28,656 KB
testcase_16 AC 58 ms
32,936 KB
testcase_17 AC 43 ms
26,616 KB
testcase_18 AC 56 ms
26,420 KB
testcase_19 AC 52 ms
27,896 KB
testcase_20 AC 63 ms
32,720 KB
testcase_21 AC 39 ms
25,932 KB
testcase_22 AC 47 ms
28,908 KB
testcase_23 AC 59 ms
29,076 KB
testcase_24 AC 61 ms
33,132 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;

namespace No79
{
    class Program
    {
        static void Main(string[] args)
        {
            var a = Int32.Parse(Console.ReadLine());
            var b = Console.ReadLine().Split(' ')
                           .GroupBy(x => x)                   // 入力の数字をキーにしてグループ化
                           .OrderByDescending(x => x.Count()) // 要素数の多い順(降順)に並び替え
                           .ThenByDescending(x => x.Key)      // 要素数が同数の場合、キーの大きい順(降順)に並び替え
                           .First()                           // 先頭のグループを取得
                           .Key;                              // キーを取得
            Console.WriteLine(b);
            Console.ReadKey();
        }
    }
}
0