結果

問題 No.182 新規性の虜
ユーザー k_kadorak_kadora
提出日時 2015-06-11 00:14:57
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 426 bytes
コンパイル時間 3,438 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-07-06 15:30:10
合計ジャッジ時間 12,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
39,764 KB
testcase_01 AC 100 ms
41,080 KB
testcase_02 AC 103 ms
40,892 KB
testcase_03 AC 102 ms
41,184 KB
testcase_04 AC 94 ms
40,636 KB
testcase_05 AC 106 ms
41,188 KB
testcase_06 AC 101 ms
41,528 KB
testcase_07 AC 103 ms
41,436 KB
testcase_08 AC 442 ms
48,436 KB
testcase_09 AC 558 ms
49,476 KB
testcase_10 AC 521 ms
48,656 KB
testcase_11 AC 468 ms
48,460 KB
testcase_12 AC 357 ms
47,924 KB
testcase_13 AC 110 ms
41,068 KB
testcase_14 AC 102 ms
40,336 KB
testcase_15 RE -
testcase_16 AC 92 ms
40,056 KB
testcase_17 AC 109 ms
41,816 KB
testcase_18 AC 445 ms
48,728 KB
testcase_19 AC 417 ms
48,516 KB
testcase_20 AC 347 ms
47,960 KB
testcase_21 AC 425 ms
48,252 KB
testcase_22 AC 381 ms
47,920 KB
testcase_23 RE -
testcase_24 AC 414 ms
47,892 KB
testcase_25 AC 468 ms
48,628 KB
testcase_26 AC 234 ms
47,912 KB
testcase_27 AC 102 ms
40,888 KB
evil01.txt AC 497 ms
48,464 KB
evil02.txt AC 457 ms
48,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class New {
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,count=0;
		n = sc.nextInt();
		int[] a = new int[n];
		for(int i = 0; i< n;i++){
			a[i] = sc.nextInt();
		}
		Arrays.sort(a);
		if(a[0] != a[1])count++;
		for(int i = 0;i<n-2;i++){
			if(a[i] != a[i+1] && a[i+1] != a[i+2])count++;
		}
		if(a[n-2] != a[n-1])count++;
		System.out.println(count);
	}
}
0