結果

問題 No.182 新規性の虜
ユーザー koukonkokoukonko
提出日時 2015-12-14 13:23:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 809 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 75,160 KB
実行使用メモリ 53,152 KB
最終ジャッジ日時 2024-09-15 12:31:31
合計ジャッジ時間 8,663 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,016 KB
testcase_01 AC 52 ms
37,064 KB
testcase_02 AC 52 ms
36,668 KB
testcase_03 AC 50 ms
36,660 KB
testcase_04 AC 50 ms
36,692 KB
testcase_05 AC 51 ms
37,012 KB
testcase_06 AC 51 ms
36,896 KB
testcase_07 AC 51 ms
37,016 KB
testcase_08 AC 255 ms
46,976 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 50 ms
36,628 KB
testcase_14 AC 50 ms
36,700 KB
testcase_15 AC 52 ms
36,780 KB
testcase_16 AC 50 ms
37,092 KB
testcase_17 AC 51 ms
36,916 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 50 ms
36,940 KB
testcase_24 AC 250 ms
52,672 KB
testcase_25 AC 192 ms
50,008 KB
testcase_26 AC 137 ms
40,488 KB
testcase_27 AC 52 ms
36,524 KB
evil01.txt AC 258 ms
52,852 KB
evil02.txt AC 252 ms
53,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {

			int N = Integer.parseInt(read.readLine());
			String[] line = read.readLine().split(" ");
			List<Integer> list = new ArrayList<>(N);
			list.add(0);
			for (int i = 0; i < N; ++i) {
				list.add(Integer.parseInt(line[i]));
			}
			list.add(Integer.MAX_VALUE);
			list.sort(null);

			int ans = 0;
			for (int i = 1; i <= N; ++i) {
				if (list.get(i - 1) != list.get(i) && list.get(i + 1) != list.get(i)) {
					++ans;
				}
			}

			System.out.println(ans);

		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0