結果

問題 No.182 新規性の虜
ユーザー chankou0920chankou0920
提出日時 2017-10-17 16:03:12
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 108,892 KB
実行使用メモリ 27,524 KB
最終ジャッジ日時 2024-11-17 21:57:54
合計ジャッジ時間 4,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,048 KB
testcase_01 AC 22 ms
17,664 KB
testcase_02 AC 22 ms
17,920 KB
testcase_03 AC 22 ms
17,792 KB
testcase_04 AC 22 ms
17,664 KB
testcase_05 AC 22 ms
17,792 KB
testcase_06 AC 22 ms
17,792 KB
testcase_07 AC 23 ms
18,048 KB
testcase_08 AC 53 ms
22,656 KB
testcase_09 AC 72 ms
26,240 KB
testcase_10 AC 66 ms
25,216 KB
testcase_11 AC 58 ms
23,168 KB
testcase_12 AC 40 ms
21,120 KB
testcase_13 AC 23 ms
17,792 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 25 ms
17,920 KB
testcase_17 AC 22 ms
17,792 KB
testcase_18 AC 60 ms
23,236 KB
testcase_19 AC 50 ms
21,888 KB
testcase_20 WA -
testcase_21 AC 65 ms
23,808 KB
testcase_22 AC 46 ms
21,376 KB
testcase_23 WA -
testcase_24 AC 63 ms
25,088 KB
testcase_25 AC 59 ms
22,528 KB
testcase_26 AC 33 ms
19,200 KB
testcase_27 WA -
evil01.txt AC 66 ms
27,648 KB
evil02.txt AC 69 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 = 1; i < array.Length - 1; i++) {
			// 前後が同じ値でなければ新規性がある。
			if (array[i] != array[i-1] && array[i] != array[i+1]) {
				count++;
				/*
				前から2番目(後ろから2番目)が新規性ならば、
				前から1番目(後ろから1番目)も新規性である。
				*/
				if (i == 1 || i == array.Length - 2) {
					count++;	
				}
			}
		}
		
		Console.WriteLine(count);
	}
}
0