結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー bluemeganebluemegane
提出日時 2018-09-28 20:09:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 621 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 114,720 KB
実行使用メモリ 29,908 KB
最終ジャッジ日時 2024-10-12 05:28:46
合計ジャッジ時間 2,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
25,604 KB
testcase_01 AC 52 ms
29,908 KB
testcase_02 AC 27 ms
24,960 KB
testcase_03 AC 29 ms
26,776 KB
testcase_04 AC 28 ms
25,216 KB
testcase_05 AC 53 ms
29,680 KB
testcase_06 AC 28 ms
25,084 KB
testcase_07 AC 28 ms
25,092 KB
testcase_08 AC 28 ms
25,112 KB
testcase_09 AC 29 ms
25,084 KB
testcase_10 AC 29 ms
24,836 KB
testcase_11 AC 29 ms
27,132 KB
testcase_12 AC 28 ms
25,120 KB
testcase_13 AC 29 ms
25,132 KB
testcase_14 AC 44 ms
26,696 KB
testcase_15 AC 38 ms
28,284 KB
testcase_16 AC 47 ms
27,004 KB
testcase_17 AC 38 ms
26,040 KB
testcase_18 AC 48 ms
29,136 KB
testcase_19 AC 41 ms
28,316 KB
testcase_20 AC 52 ms
29,792 KB
testcase_21 AC 33 ms
27,448 KB
testcase_22 AC 40 ms
26,248 KB
testcase_23 AC 51 ms
29,316 KB
testcase_24 AC 49 ms
29,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class P
{
    public int LvL { get; set; }
    public int c { get; set; }
}

public class Hello
{
    public static void Main()
    {
        var ps = new P[6];
        for (int i = 0; i < 6; i++) ps[i] = new P { LvL = i };
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        for (int i = 0; i < n; i++) ps[a[i] - 1].c++;
        var ans = ps.OrderByDescending(x => x.c).ThenByDescending(x => x.LvL).First().LvL + 1;
        Console.WriteLine(ans);
    }
}
0