結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
19,840 KB
testcase_01 AC 66 ms
23,808 KB
testcase_02 AC 27 ms
18,944 KB
testcase_03 AC 26 ms
18,816 KB
testcase_04 AC 26 ms
18,944 KB
testcase_05 AC 63 ms
23,936 KB
testcase_06 AC 26 ms
18,944 KB
testcase_07 AC 24 ms
18,816 KB
testcase_08 AC 26 ms
18,816 KB
testcase_09 AC 26 ms
18,816 KB
testcase_10 AC 26 ms
18,944 KB
testcase_11 AC 29 ms
18,944 KB
testcase_12 AC 27 ms
18,816 KB
testcase_13 AC 28 ms
18,944 KB
testcase_14 AC 54 ms
21,892 KB
testcase_15 AC 39 ms
20,864 KB
testcase_16 AC 58 ms
22,964 KB
testcase_17 AC 39 ms
20,864 KB
testcase_18 AC 59 ms
23,012 KB
testcase_19 AC 50 ms
21,592 KB
testcase_20 AC 70 ms
23,808 KB
testcase_21 AC 34 ms
19,584 KB
testcase_22 AC 45 ms
21,008 KB
testcase_23 AC 63 ms
23,680 KB
testcase_24 AC 67 ms
23,936 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