結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー ooh_25ooh_25
提出日時 2017-06-05 12:10:12
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 877 bytes
コンパイル時間 920 ms
コンパイル使用メモリ 114,436 KB
実行使用メモリ 32,024 KB
最終ジャッジ日時 2024-09-22 06:47:56
合計ジャッジ時間 2,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
23,604 KB
testcase_01 AC 53 ms
30,248 KB
testcase_02 AC 28 ms
27,392 KB
testcase_03 AC 28 ms
23,092 KB
testcase_04 AC 27 ms
23,348 KB
testcase_05 AC 53 ms
29,988 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 27 ms
25,128 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 28 ms
27,384 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 44 ms
26,664 KB
testcase_15 AC 37 ms
26,268 KB
testcase_16 AC 49 ms
25,648 KB
testcase_17 AC 37 ms
28,276 KB
testcase_18 AC 48 ms
29,516 KB
testcase_19 AC 44 ms
28,548 KB
testcase_20 AC 54 ms
30,376 KB
testcase_21 AC 33 ms
25,768 KB
testcase_22 AC 39 ms
26,732 KB
testcase_23 AC 52 ms
32,024 KB
testcase_24 AC 54 ms
30,176 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;
using System.Text;
using System.Threading.Tasks;

namespace lecture
{
    class Program
    {
        public static void Main(String[] args)
        {
            int N = int.Parse(Console.ReadLine());
            int[] L = Console.ReadLine().Trim().Split(' ').Select(x => int.Parse(x)).ToArray();
      
            int [] counts= new int[N];
         
            for (int i = 0; i < L.Length; i++)
            {
                int j = L[i];
                counts[j]++;

            }
            int max = 0;
            int index = 0;

            for (int i = L.Length-1; i >= 1; i--)
            {
                if(max < counts[i]){
                    max = counts[i];
                    index = i;
                }
            }
           
            Console.WriteLine(index);
        }
    }
}
0