結果

問題 No.182 新規性の虜
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-04-10 17:46:35
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 553 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 61,864 KB
最終ジャッジ日時 2024-10-04 05:45:48
合計ジャッジ時間 12,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,840 KB
testcase_01 AC 117 ms
53,824 KB
testcase_02 AC 112 ms
52,672 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 506 ms
59,328 KB
testcase_19 AC 429 ms
59,260 KB
testcase_20 AC 391 ms
59,280 KB
testcase_21 AC 556 ms
59,252 KB
testcase_22 AC 429 ms
59,140 KB
testcase_23 AC 122 ms
53,992 KB
testcase_24 AC 489 ms
58,084 KB
testcase_25 AC 495 ms
59,232 KB
testcase_26 RE -
testcase_27 AC 119 ms
54,168 KB
evil01.txt RE -
evil02.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt(), min = Integer.MAX_VALUE, max = Integer.MIN_VALUE, cnt = 0;
		int[] a = new int[N];
		
		for(int i = 0; i < N; i++) {
			a[i] = sc.nextInt();
			
			min = Math.min(min, a[i]);
			max = Math.max(max, a[i]);
		}
		
		int[] A = new int[max - min + 1];
	
		for(int i = 0; i < N; i++) {
			A[a[i] - 1]++;
		}
		
		for(int i = 0; i < A.length; i++) {
			if(A[i] == 1)	cnt++;
		}
		
		System.out.println(cnt);
	}
}
0