結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー TDTD
提出日時 2022-06-01 10:22:10
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 939 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 108,348 KB
実行使用メモリ 30,396 KB
最終ジャッジ日時 2024-09-21 01:27:30
合計ジャッジ時間 2,242 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 22 ms
26,124 KB
testcase_04 AC 21 ms
24,028 KB
testcase_05 AC 47 ms
27,980 KB
testcase_06 AC 23 ms
23,988 KB
testcase_07 AC 23 ms
23,908 KB
testcase_08 WA -
testcase_09 AC 22 ms
23,904 KB
testcase_10 AC 21 ms
23,772 KB
testcase_11 AC 22 ms
25,944 KB
testcase_12 AC 22 ms
23,896 KB
testcase_13 AC 23 ms
23,776 KB
testcase_14 WA -
testcase_15 AC 31 ms
27,352 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 39 ms
23,384 KB
testcase_20 AC 47 ms
30,396 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = int.Parse(Console.ReadLine());
            string[] s = Console.ReadLine().Trim().Split(' ');
            int b;
            int ans = 0;
            int[] c = new int[10];
            for(int i = 0; i < a; i++)
            {
                b = int.Parse(s[i]);
                for(int j = 1; j <= 10; j++)
                {
                    if (b == j) 
                    {
                        c[j - 1]++;
                    }
                }
            }
            for(int x = 0; x <= 8; x++)
            {
                if (c[x] > c[x + 1])
                {
                    ans = x;
                }
                else if (c[x + 1] > c[x])
                {
                    ans = x + 1;
                }
            }
            Console.WriteLine(ans+1);
        }

    }
}
0