結果

問題 No.182 新規性の虜
ユーザー chankou0920chankou0920
提出日時 2017-10-17 16:25:26
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 811 bytes
コンパイル時間 2,723 ms
コンパイル使用メモリ 103,296 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-12-27 19:41:39
合計ジャッジ時間 5,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,792 KB
testcase_01 AC 26 ms
17,920 KB
testcase_02 AC 28 ms
17,664 KB
testcase_03 AC 26 ms
17,792 KB
testcase_04 AC 28 ms
17,792 KB
testcase_05 AC 29 ms
17,792 KB
testcase_06 AC 28 ms
17,920 KB
testcase_07 AC 28 ms
17,920 KB
testcase_08 AC 64 ms
22,400 KB
testcase_09 AC 85 ms
25,984 KB
testcase_10 AC 76 ms
24,960 KB
testcase_11 AC 67 ms
23,168 KB
testcase_12 AC 43 ms
20,864 KB
testcase_13 AC 32 ms
17,792 KB
testcase_14 AC 27 ms
17,792 KB
testcase_15 AC 24 ms
17,664 KB
testcase_16 AC 26 ms
17,792 KB
testcase_17 AC 27 ms
17,920 KB
testcase_18 AC 72 ms
23,116 KB
testcase_19 AC 56 ms
21,764 KB
testcase_20 AC 50 ms
20,308 KB
testcase_21 AC 77 ms
23,808 KB
testcase_22 AC 51 ms
21,120 KB
testcase_23 AC 25 ms
17,536 KB
testcase_24 AC 73 ms
24,960 KB
testcase_25 AC 71 ms
22,656 KB
testcase_26 AC 36 ms
19,200 KB
testcase_27 AC 26 ms
17,792 KB
evil01.txt AC 76 ms
27,392 KB
evil02.txt AC 79 ms
27,264 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