結果

問題 No.182 新規性の虜
ユーザー mencottonmencotton
提出日時 2017-12-29 21:10:21
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 612 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 104,448 KB
実行使用メモリ 32,376 KB
最終ジャッジ日時 2024-06-01 06:42:34
合計ジャッジ時間 3,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,256 KB
testcase_01 AC 30 ms
25,244 KB
testcase_02 AC 31 ms
25,244 KB
testcase_03 AC 31 ms
25,252 KB
testcase_04 AC 31 ms
27,284 KB
testcase_05 AC 30 ms
25,112 KB
testcase_06 AC 30 ms
25,240 KB
testcase_07 AC 31 ms
27,560 KB
testcase_08 AC 70 ms
31,956 KB
testcase_09 AC 90 ms
32,244 KB
testcase_10 AC 83 ms
31,628 KB
testcase_11 AC 74 ms
32,376 KB
testcase_12 AC 51 ms
27,040 KB
testcase_13 AC 31 ms
27,416 KB
testcase_14 AC 30 ms
25,368 KB
testcase_15 RE -
testcase_16 AC 30 ms
27,304 KB
testcase_17 AC 30 ms
25,500 KB
testcase_18 AC 74 ms
28,152 KB
testcase_19 AC 62 ms
27,160 KB
testcase_20 AC 51 ms
26,568 KB
testcase_21 AC 79 ms
30,468 KB
testcase_22 AC 57 ms
27,420 KB
testcase_23 RE -
testcase_24 AC 77 ms
31,564 KB
testcase_25 AC 70 ms
27,956 KB
testcase_26 AC 41 ms
26,268 KB
testcase_27 AC 30 ms
24,992 KB
evil01.txt AC 87 ms
34,816 KB
evil02.txt AC 88 ms
32,868 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.Collections.Generic;
using System.Linq;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray();
            Array.Sort(x);
            int ret = 0;
            if (x[0] != x[1]) ret++;
            for (int i = 1; i < n - 1; i++)
            {
                if (x[i - 1] != x[i] && x[i] != x[i + 1]) ret++;
            }
            if (x[n - 2] != x[n - 1]) ret++;
            Console.WriteLine(ret);
        }
    }
}
0