結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー yuki2006yuki2006
提出日時 2019-06-22 15:39:21
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 1,289 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 105,088 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-12-26 09:14:07
合計ジャッジ時間 4,316 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
19,584 KB
testcase_01 AC 82 ms
23,808 KB
testcase_02 AC 33 ms
18,944 KB
testcase_03 AC 31 ms
18,944 KB
testcase_04 AC 32 ms
18,816 KB
testcase_05 AC 71 ms
23,808 KB
testcase_06 AC 29 ms
18,560 KB
testcase_07 AC 31 ms
18,688 KB
testcase_08 AC 29 ms
18,944 KB
testcase_09 AC 29 ms
18,816 KB
testcase_10 AC 31 ms
18,816 KB
testcase_11 AC 28 ms
18,944 KB
testcase_12 AC 33 ms
19,072 KB
testcase_13 AC 31 ms
18,688 KB
testcase_14 AC 59 ms
21,768 KB
testcase_15 AC 42 ms
20,736 KB
testcase_16 AC 65 ms
22,844 KB
testcase_17 AC 44 ms
20,480 KB
testcase_18 AC 65 ms
22,528 KB
testcase_19 AC 57 ms
21,708 KB
testcase_20 AC 77 ms
23,936 KB
testcase_21 AC 35 ms
19,584 KB
testcase_22 AC 45 ms
20,880 KB
testcase_23 AC 70 ms
23,552 KB
testcase_24 AC 73 ms
23,552 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 Algorithm
{
    class Program
    {
        static void Logic(List<int> list)
        {
            list.Sort();

            int count = 0;
            int preNumber = 0;
            int countMax = 0;
            int answer = 0;

            for(int i = 0; i < list.Count; i++)
            {
                if (preNumber == list[i])
                {
                    // 前回の数字と同じ場合
                    count++;

                }
                else
                {
                    // 前回の数字と違う場合
                    count = 1;
                    preNumber = list[i];
                }

                if (count >= countMax)
                {
                    // 最大値が同じか超えた場合 その時の更新する
                    countMax = count;
                    answer = list[i];
                }


            }
       

            Console.WriteLine(answer);
        }


        static void Main(string[] args)
        {
            Console.ReadLine(); // N
            var list = Console.ReadLine().Split(' ').Select(int.Parse).ToList();
            Logic(list);
        }
    }
}
0