結果

問題 No.182 新規性の虜
ユーザー k_kadorak_kadora
提出日時 2015-06-11 00:17:41
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 485 bytes
コンパイル時間 3,601 ms
コンパイル使用メモリ 83,640 KB
実行使用メモリ 48,624 KB
最終ジャッジ日時 2024-07-04 02:47:29
合計ジャッジ時間 13,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,148 KB
testcase_01 AC 105 ms
40,072 KB
testcase_02 AC 118 ms
41,152 KB
testcase_03 AC 99 ms
39,668 KB
testcase_04 AC 119 ms
41,468 KB
testcase_05 AC 122 ms
41,116 KB
testcase_06 AC 107 ms
40,012 KB
testcase_07 AC 112 ms
40,236 KB
testcase_08 AC 483 ms
48,416 KB
testcase_09 AC 635 ms
48,624 KB
testcase_10 AC 566 ms
48,540 KB
testcase_11 AC 499 ms
48,492 KB
testcase_12 AC 408 ms
48,080 KB
testcase_13 AC 124 ms
41,088 KB
testcase_14 AC 129 ms
41,132 KB
testcase_15 AC 108 ms
40,956 KB
testcase_16 AC 101 ms
39,916 KB
testcase_17 AC 116 ms
41,444 KB
testcase_18 AC 503 ms
47,780 KB
testcase_19 AC 462 ms
48,088 KB
testcase_20 AC 365 ms
47,844 KB
testcase_21 AC 540 ms
48,492 KB
testcase_22 AC 448 ms
48,120 KB
testcase_23 AC 101 ms
40,200 KB
testcase_24 AC 460 ms
48,312 KB
testcase_25 AC 489 ms
48,520 KB
testcase_26 AC 277 ms
48,192 KB
testcase_27 WA -
evil01.txt AC 538 ms
48,188 KB
evil02.txt AC 515 ms
48,884 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(n>1){
			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(n>3){
				if(a[n-2] != a[n-1])count++;
			}
		}else{
			count++;
		}
		System.out.println(count);
	}
}
0