結果

問題 No.182 新規性の虜
ユーザー しらゆきしらゆき
提出日時 2015-11-19 09:06:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 100 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 4,577 ms
コンパイル使用メモリ 109,576 KB
実行使用メモリ 27,136 KB
最終ジャッジ日時 2024-12-26 20:04:34
合計ジャッジ時間 5,614 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
18,816 KB
testcase_01 AC 30 ms
18,688 KB
testcase_02 AC 29 ms
18,944 KB
testcase_03 AC 35 ms
18,944 KB
testcase_04 AC 28 ms
18,816 KB
testcase_05 AC 30 ms
18,816 KB
testcase_06 AC 28 ms
19,072 KB
testcase_07 AC 35 ms
19,072 KB
testcase_08 AC 67 ms
23,680 KB
testcase_09 AC 100 ms
27,136 KB
testcase_10 AC 79 ms
25,984 KB
testcase_11 AC 71 ms
24,448 KB
testcase_12 AC 48 ms
21,888 KB
testcase_13 AC 34 ms
18,944 KB
testcase_14 AC 30 ms
18,944 KB
testcase_15 AC 27 ms
18,560 KB
testcase_16 AC 30 ms
19,072 KB
testcase_17 AC 29 ms
18,944 KB
testcase_18 AC 73 ms
24,344 KB
testcase_19 AC 60 ms
22,600 KB
testcase_20 AC 48 ms
21,404 KB
testcase_21 AC 76 ms
24,960 KB
testcase_22 AC 55 ms
22,400 KB
testcase_23 AC 27 ms
18,816 KB
testcase_24 AC 75 ms
25,984 KB
testcase_25 AC 69 ms
24,064 KB
testcase_26 AC 39 ms
20,608 KB
testcase_27 AC 28 ms
18,816 KB
evil01.txt AC 83 ms
28,672 KB
evil02.txt AC 104 ms
28,672 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