結果

問題 No.182 新規性の虜
ユーザー しらゆきしらゆき
提出日時 2015-11-19 09:06:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 1,013 ms
コンパイル使用メモリ 109,332 KB
実行使用メモリ 34,028 KB
最終ジャッジ日時 2024-06-08 03:25:03
合計ジャッジ時間 3,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,992 KB
testcase_01 AC 29 ms
27,292 KB
testcase_02 AC 29 ms
25,248 KB
testcase_03 AC 30 ms
27,168 KB
testcase_04 AC 29 ms
25,264 KB
testcase_05 AC 27 ms
24,996 KB
testcase_06 AC 28 ms
27,308 KB
testcase_07 AC 28 ms
25,380 KB
testcase_08 AC 62 ms
31,824 KB
testcase_09 AC 80 ms
34,028 KB
testcase_10 AC 74 ms
31,516 KB
testcase_11 AC 71 ms
30,320 KB
testcase_12 AC 50 ms
27,156 KB
testcase_13 AC 29 ms
25,260 KB
testcase_14 AC 27 ms
25,636 KB
testcase_15 AC 25 ms
25,252 KB
testcase_16 AC 28 ms
25,252 KB
testcase_17 AC 27 ms
25,264 KB
testcase_18 AC 72 ms
32,164 KB
testcase_19 AC 61 ms
27,260 KB
testcase_20 AC 50 ms
26,592 KB
testcase_21 AC 73 ms
30,588 KB
testcase_22 AC 51 ms
29,600 KB
testcase_23 AC 26 ms
25,088 KB
testcase_24 AC 73 ms
33,220 KB
testcase_25 AC 65 ms
31,808 KB
testcase_26 AC 38 ms
28,208 KB
testcase_27 AC 28 ms
27,044 KB
evil01.txt AC 81 ms
32,736 KB
evil02.txt AC 80 ms
34,956 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 (n != 1)
        {
            if (a[0] != a[1]) cnt++;
            if (a[n - 2] != a[n - 1]) cnt++;
        }
        else cnt++;
        
        Console.WriteLine(cnt);
    }
}
0