結果

問題 No.182 新規性の虜
ユーザー kenkooookenkoooo
提出日時 2015-04-16 23:35:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 196 ms / 5,000 ms
コード長 868 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 40,900 KB
最終ジャッジ日時 2024-06-08 02:53:06
合計ジャッジ時間 5,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,532 KB
testcase_01 AC 52 ms
36,532 KB
testcase_02 AC 48 ms
36,952 KB
testcase_03 AC 47 ms
36,392 KB
testcase_04 AC 50 ms
36,928 KB
testcase_05 AC 50 ms
36,728 KB
testcase_06 AC 48 ms
36,864 KB
testcase_07 AC 48 ms
36,804 KB
testcase_08 AC 187 ms
40,312 KB
testcase_09 AC 196 ms
40,836 KB
testcase_10 AC 176 ms
40,900 KB
testcase_11 AC 167 ms
40,564 KB
testcase_12 AC 125 ms
39,444 KB
testcase_13 AC 50 ms
36,888 KB
testcase_14 AC 50 ms
36,416 KB
testcase_15 AC 49 ms
36,688 KB
testcase_16 AC 48 ms
36,532 KB
testcase_17 AC 48 ms
36,780 KB
testcase_18 AC 164 ms
40,688 KB
testcase_19 AC 125 ms
39,940 KB
testcase_20 AC 114 ms
39,696 KB
testcase_21 AC 170 ms
40,848 KB
testcase_22 AC 116 ms
39,836 KB
testcase_23 AC 48 ms
36,980 KB
testcase_24 AC 107 ms
39,704 KB
testcase_25 AC 105 ms
39,444 KB
testcase_26 AC 97 ms
39,868 KB
testcase_27 AC 49 ms
36,416 KB
evil01.txt AC 123 ms
39,636 KB
evil02.txt AC 125 ms
39,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.Arrays;

public class Main {

	public static void main(String[] args) throws Exception {
		int N = nextInt();
		int[] input = new int[N];
		for (int i = 0; i < N; i++) {
			input[i] = nextInt();
		}
		Arrays.sort(input);
		int ans = 0;
		for (int i = 0; i < N; i++) {
			if ((i == 0 || input[i - 1] != input[i]) && (i == N - 1 || input[i] != input[i + 1])) {
				ans++;
			}
		}
		System.out.println(ans);
	}

	static int nextInt() {
		int c;
		try {
			c = System.in.read();
			while (c != '-' && (c < '0' || c > '9'))
				c = System.in.read();
			if (c == '-')
				return -nextInt();
			int res = 0;
			while (c >= '0' && c <= '9') {
				res = res * 10 + c - '0';
				c = System.in.read();
			}
			return res;
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return -1;
	}
}
0