結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー funakoshifunakoshi
提出日時 2019-06-24 09:44:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 1,245 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 110,656 KB
実行使用メモリ 22,852 KB
最終ジャッジ日時 2024-06-10 08:20:22
合計ジャッジ時間 2,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
18,688 KB
testcase_01 AC 41 ms
22,672 KB
testcase_02 AC 19 ms
17,920 KB
testcase_03 AC 19 ms
17,536 KB
testcase_04 AC 19 ms
17,792 KB
testcase_05 AC 40 ms
22,844 KB
testcase_06 AC 19 ms
17,920 KB
testcase_07 AC 19 ms
17,664 KB
testcase_08 AC 19 ms
17,792 KB
testcase_09 AC 19 ms
17,920 KB
testcase_10 AC 19 ms
18,048 KB
testcase_11 AC 20 ms
17,536 KB
testcase_12 AC 19 ms
17,920 KB
testcase_13 AC 20 ms
17,536 KB
testcase_14 AC 34 ms
20,764 KB
testcase_15 AC 27 ms
19,456 KB
testcase_16 AC 38 ms
21,836 KB
testcase_17 AC 28 ms
19,200 KB
testcase_18 AC 37 ms
21,624 KB
testcase_19 AC 35 ms
20,344 KB
testcase_20 AC 42 ms
22,852 KB
testcase_21 AC 24 ms
18,432 KB
testcase_22 AC 30 ms
20,012 KB
testcase_23 AC 42 ms
22,640 KB
testcase_24 AC 41 ms
22,604 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 yukicoderTest
{
    class Program
    {
        static void Main(string[] args)
        {
            string aaaaaaa = Console.ReadLine();
            string input = Console.ReadLine();
            string[] num = new string[6];
            int[] cnt = new int[6];
            string[] level = input.Split(' ');
            for(int i=1;i<=num.Length;i++)
            {
                num[i - 1] = i.ToString();
                cnt[i - 1] = 0;
            }
            for(int i=0;i<level.Length;i++)
            {
                string temp = level[i].Substring(0, 1);
                for(int j=0;j<num.Length;j++)
                {
                    if(temp==num[j])
                    {
                        cnt[j]++;
                    }
                }
            }
            string ans = "";
            int max = 0;
            for(int i=0;i<cnt.Length;i++)
            {


                if (max <= cnt[i])
                {
                    max = cnt[i];
                    ans = num[i];
                }
                
            }
            Console.WriteLine(ans);
        }
    }
}
0