結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー itok217itok217
提出日時 2017-05-28 16:14:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 574 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 109,952 KB
実行使用メモリ 29,868 KB
最終ジャッジ日時 2024-06-26 08:13:19
合計ジャッジ時間 2,626 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
27,660 KB
testcase_01 AC 56 ms
27,660 KB
testcase_02 AC 28 ms
25,008 KB
testcase_03 AC 28 ms
27,136 KB
testcase_04 AC 28 ms
24,880 KB
testcase_05 AC 55 ms
29,868 KB
testcase_06 AC 28 ms
25,088 KB
testcase_07 AC 29 ms
25,112 KB
testcase_08 AC 29 ms
27,152 KB
testcase_09 AC 29 ms
27,400 KB
testcase_10 AC 29 ms
25,136 KB
testcase_11 AC 29 ms
27,136 KB
testcase_12 AC 29 ms
25,364 KB
testcase_13 AC 28 ms
23,212 KB
testcase_14 AC 47 ms
26,664 KB
testcase_15 AC 38 ms
24,376 KB
testcase_16 AC 50 ms
27,580 KB
testcase_17 AC 37 ms
26,136 KB
testcase_18 AC 49 ms
27,192 KB
testcase_19 AC 44 ms
26,504 KB
testcase_20 AC 55 ms
27,824 KB
testcase_21 AC 34 ms
25,652 KB
testcase_22 AC 41 ms
26,348 KB
testcase_23 AC 54 ms
29,752 KB
testcase_24 AC 55 ms
29,796 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;

class Program {
    static void Main() {
        int[] memo = new int[7];
        int n = int.Parse(Console.ReadLine());
        int[] L = Console.ReadLine().Split().Select(int.Parse).ToArray();
        for (int i = 0; i < n; i++) {
            memo[L[i]]++;
        }
        int max = 0;
        int eval = 0;
        for (int i = 1; i <= 6; i++) {
            if (max <= memo[i]) {
                max = memo[i];
                eval = i;
            }
        }
        Console.WriteLine(eval);
    }
}
0