結果

問題 No.182 新規性の虜
ユーザー しらゆきしらゆき
提出日時 2015-11-19 09:03:11
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 530 bytes
コンパイル時間 811 ms
コンパイル使用メモリ 111,340 KB
実行使用メモリ 32,360 KB
最終ジャッジ日時 2024-09-13 17:00:47
合計ジャッジ時間 4,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,368 KB
testcase_01 AC 29 ms
25,004 KB
testcase_02 AC 28 ms
23,096 KB
testcase_03 AC 29 ms
25,116 KB
testcase_04 AC 30 ms
27,428 KB
testcase_05 AC 29 ms
25,368 KB
testcase_06 AC 30 ms
27,180 KB
testcase_07 AC 30 ms
25,260 KB
testcase_08 AC 68 ms
29,788 KB
testcase_09 AC 89 ms
32,252 KB
testcase_10 AC 81 ms
31,708 KB
testcase_11 AC 74 ms
30,320 KB
testcase_12 AC 50 ms
27,156 KB
testcase_13 AC 29 ms
25,120 KB
testcase_14 AC 30 ms
23,096 KB
testcase_15 RE -
testcase_16 AC 30 ms
25,264 KB
testcase_17 AC 30 ms
25,384 KB
testcase_18 AC 73 ms
32,028 KB
testcase_19 AC 62 ms
29,308 KB
testcase_20 AC 50 ms
26,584 KB
testcase_21 AC 79 ms
32,360 KB
testcase_22 AC 55 ms
27,296 KB
testcase_23 RE -
testcase_24 AC 76 ms
31,276 KB
testcase_25 AC 70 ms
29,728 KB
testcase_26 AC 42 ms
28,320 KB
testcase_27 AC 32 ms
25,264 KB
evil01.txt AC 88 ms
32,732 KB
evil02.txt AC 86 ms
33,236 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;

class Program
{
    static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        int[] a = Console.ReadLine().Split().Select(int.Parse).ToArray();

        Array.Sort(a);
        int cnt = 0;

        for (int i = 0; i < n - 2; i++)
        {
            if (a[i] != a[i + 1] && a[i + 1] != a[i + 2])
            {
                cnt++;
            }
        }

        if (a[0] != a[1]) cnt++;
        if (a[n - 2] != a[n - 1]) cnt++;

        Console.WriteLine(cnt);
    }
}
0