結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー swdamdrswdamdr
提出日時 2017-01-25 17:23:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 527 bytes
コンパイル時間 811 ms
コンパイル使用メモリ 108,380 KB
実行使用メモリ 23,688 KB
最終ジャッジ日時 2024-06-26 08:08:41
合計ジャッジ時間 2,676 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
19,456 KB
testcase_01 AC 64 ms
23,512 KB
testcase_02 AC 28 ms
18,688 KB
testcase_03 AC 28 ms
18,944 KB
testcase_04 AC 27 ms
18,688 KB
testcase_05 AC 64 ms
23,688 KB
testcase_06 AC 27 ms
18,688 KB
testcase_07 AC 27 ms
18,944 KB
testcase_08 AC 27 ms
18,944 KB
testcase_09 AC 27 ms
18,688 KB
testcase_10 AC 28 ms
18,816 KB
testcase_11 AC 27 ms
18,944 KB
testcase_12 AC 26 ms
18,560 KB
testcase_13 AC 27 ms
18,560 KB
testcase_14 AC 51 ms
21,732 KB
testcase_15 AC 41 ms
20,352 KB
testcase_16 AC 57 ms
22,676 KB
testcase_17 AC 38 ms
20,480 KB
testcase_18 AC 56 ms
22,464 KB
testcase_19 AC 49 ms
21,692 KB
testcase_20 AC 65 ms
23,556 KB
testcase_21 AC 32 ms
19,328 KB
testcase_22 AC 43 ms
20,720 KB
testcase_23 AC 63 ms
23,092 KB
testcase_24 AC 63 ms
23,568 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.Linq;
using System.Collections.Generic;

class Program
{
    static void Main(string[] args)
    {
        long n = long.Parse(Console.ReadLine());
        int[] level = new int[6];

        string[] s = Console.ReadLine().Split();

        for (int i = 0; i < n; i++)
        {
            int m = int.Parse(s[i]);
            level[int.Parse(s[i]) - 1]++;
        }

        int index = Array.LastIndexOf(level, level.Max()) + 1;

        Console.WriteLine(index);
        Console.Read();
    }
}

0