結果

問題 No.182 新規性の虜
ユーザー chankou0920chankou0920
提出日時 2017-10-17 16:25:26
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 811 bytes
コンパイル時間 3,445 ms
コンパイル使用メモリ 103,040 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-06-08 12:28:14
合計ジャッジ時間 5,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,792 KB
testcase_01 AC 23 ms
17,920 KB
testcase_02 AC 23 ms
17,792 KB
testcase_03 AC 22 ms
18,048 KB
testcase_04 AC 22 ms
18,048 KB
testcase_05 AC 23 ms
17,920 KB
testcase_06 AC 22 ms
18,048 KB
testcase_07 AC 22 ms
18,048 KB
testcase_08 AC 52 ms
22,656 KB
testcase_09 AC 73 ms
26,240 KB
testcase_10 AC 65 ms
25,216 KB
testcase_11 AC 59 ms
23,424 KB
testcase_12 AC 40 ms
20,736 KB
testcase_13 AC 23 ms
17,920 KB
testcase_14 AC 23 ms
17,920 KB
testcase_15 AC 21 ms
17,792 KB
testcase_16 AC 22 ms
17,792 KB
testcase_17 AC 22 ms
18,048 KB
testcase_18 AC 58 ms
23,360 KB
testcase_19 AC 49 ms
21,636 KB
testcase_20 AC 41 ms
20,180 KB
testcase_21 AC 64 ms
23,808 KB
testcase_22 AC 46 ms
21,248 KB
testcase_23 AC 22 ms
17,920 KB
testcase_24 AC 61 ms
25,344 KB
testcase_25 AC 57 ms
22,528 KB
testcase_26 AC 32 ms
19,456 KB
testcase_27 AC 23 ms
17,920 KB
evil01.txt AC 65 ms
27,520 KB
evil02.txt AC 67 ms
27,392 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Program {
	public static void Main(string[] args) {
		Console.ReadLine(); // n
		string[] s = Console.ReadLine().Split(' ');
		
		// int型配列に変換し、ソートする。
		int[] array = new int[s.Length];
		for (int i = 0; i < array.Length; i++) {
			array[i] = int.Parse(s[i]);
		}
		Array.Sort(array);
		
		int count = 0;
		for (int i = 0; i < array.Length; i++) {
			if (array.Length == 1) {
				count = 1;
				break;
			}
			// 前後が同じ値でなければ新規性がある。
			if (i == 0) {
				if (array[i] != array[i+1]) {
					count++;
				}
			} else if (i == array.Length - 1) {
				if (array[i] != array[i-1]) {
					count++;
				}
			} else if (array[i] != array[i-1] && array[i] != array[i+1]) {
				count++;
			}
		}
		
		Console.WriteLine(count);
	}
}
0