結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー phsplsphspls
提出日時 2020-03-27 00:01:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 2,484 ms
コンパイル使用メモリ 114,388 KB
実行使用メモリ 32,136 KB
最終ジャッジ日時 2024-06-10 15:48:31
合計ジャッジ時間 4,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
26,292 KB
testcase_01 AC 62 ms
29,792 KB
testcase_02 AC 33 ms
27,336 KB
testcase_03 AC 33 ms
25,268 KB
testcase_04 AC 34 ms
25,524 KB
testcase_05 AC 62 ms
29,972 KB
testcase_06 AC 33 ms
25,424 KB
testcase_07 AC 33 ms
25,264 KB
testcase_08 AC 33 ms
25,260 KB
testcase_09 AC 33 ms
25,296 KB
testcase_10 AC 33 ms
25,388 KB
testcase_11 AC 33 ms
27,432 KB
testcase_12 AC 35 ms
25,552 KB
testcase_13 AC 33 ms
25,524 KB
testcase_14 AC 52 ms
28,656 KB
testcase_15 AC 44 ms
28,588 KB
testcase_16 AC 54 ms
27,396 KB
testcase_17 AC 40 ms
26,468 KB
testcase_18 AC 52 ms
27,508 KB
testcase_19 AC 49 ms
26,824 KB
testcase_20 AC 61 ms
32,136 KB
testcase_21 AC 39 ms
27,996 KB
testcase_22 AC 48 ms
28,720 KB
testcase_23 AC 60 ms
30,000 KB
testcase_24 AC 60 ms
32,048 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;
using System.Collections.Generic;

public class P0079 {
    public static void Main() {
        var n = int.Parse(Console.ReadLine().Trim());
        var dict = new Dictionary<int, int>();
        foreach(int i in Console.ReadLine().Trim().Split(' ').Select(int.Parse).ToList()) {
            dict[i] = dict.GetValueOrDefault(i) + 1;
        }
        var entries = dict.AsEnumerable().ToList();
        Console.WriteLine(entries.OrderByDescending(pair => pair.Value).ThenByDescending(pair => pair.Key).First().Key);
    }
}
0