結果

問題 No.182 新規性の虜
ユーザー yuki2006yuki2006
提出日時 2018-01-15 14:46:56
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,394 bytes
コンパイル時間 3,289 ms
コンパイル使用メモリ 102,912 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-12-24 02:35:31
合計ジャッジ時間 3,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,920 KB
testcase_01 AC 25 ms
17,920 KB
testcase_02 AC 24 ms
17,920 KB
testcase_03 AC 27 ms
17,920 KB
testcase_04 AC 27 ms
17,792 KB
testcase_05 AC 26 ms
17,664 KB
testcase_06 AC 24 ms
17,920 KB
testcase_07 AC 24 ms
17,664 KB
testcase_08 AC 64 ms
22,656 KB
testcase_09 AC 84 ms
26,112 KB
testcase_10 AC 80 ms
24,960 KB
testcase_11 AC 68 ms
23,296 KB
testcase_12 AC 45 ms
20,608 KB
testcase_13 AC 25 ms
17,920 KB
testcase_14 AC 26 ms
17,664 KB
testcase_15 WA -
testcase_16 AC 26 ms
17,792 KB
testcase_17 AC 26 ms
17,664 KB
testcase_18 AC 69 ms
23,040 KB
testcase_19 AC 60 ms
21,528 KB
testcase_20 AC 47 ms
19,928 KB
testcase_21 AC 74 ms
23,552 KB
testcase_22 AC 53 ms
21,248 KB
testcase_23 WA -
testcase_24 AC 72 ms
24,960 KB
testcase_25 AC 64 ms
22,912 KB
testcase_26 AC 37 ms
19,328 KB
testcase_27 WA -
evil01.txt AC 85 ms
27,264 KB
evil02.txt AC 84 ms
27,520 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;

namespace lecture
{
    class MainClass
    {
        public static void Main(string[] args)
        {
            string row = Console.ReadLine();
            int N = int.Parse(row);

            row = Console.ReadLine();
            // 空白区切りで一旦文字列の配列に区切る
            string[] tmp = row.Split();

            // 文字列の配列に区切ったあとに1つずつそれぞれ数値の配列に変換する
            int[] A = new int[N];
            for (int i = 0; i < N; i++)
            {
                A[i] = int.Parse(tmp[i]);
            }
            Array.Sort(A);

            int ans = 0;
            for (int i = 1; i < N - 1; i++)
            {
                if (!(A[i] == A[i - 1] || A[i] == A[i + 1]))
                {
                    ans++;
                }
            }
            if (N > 1)
            {
                // 左端でみたときにとなりが違っていたら
                if (A[0] != A[1])
                {
                    ans++;
                }
            }
            if (N > 2)
            {
                // 右端でみたときにとなりが違っていたら
                if (A[N - 1] != A[N - 2])
                {
                    ans++;
                }
            }

            Console.WriteLine(ans);
        }

    }
}
0