結果

問題 No.182 新規性の虜
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-24 17:27:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 664 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 52,944 KB
最終ジャッジ日時 2024-07-07 17:28:54
合計ジャッジ時間 11,500 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,432 KB
testcase_01 AC 106 ms
40,780 KB
testcase_02 AC 105 ms
40,892 KB
testcase_03 AC 99 ms
40,216 KB
testcase_04 AC 100 ms
39,920 KB
testcase_05 AC 107 ms
39,956 KB
testcase_06 AC 100 ms
40,116 KB
testcase_07 AC 111 ms
41,024 KB
testcase_08 AC 462 ms
50,524 KB
testcase_09 AC 537 ms
50,020 KB
testcase_10 AC 521 ms
51,396 KB
testcase_11 AC 555 ms
50,816 KB
testcase_12 AC 377 ms
48,512 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 107 ms
41,372 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 104 ms
40,936 KB
testcase_24 AC 471 ms
52,944 KB
testcase_25 AC 460 ms
48,332 KB
testcase_26 AC 243 ms
47,852 KB
testcase_27 AC 102 ms
40,012 KB
evil01.txt AC 567 ms
57,000 KB
evil02.txt AC 515 ms
55,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;

public class Main {
	public static int solve(int[] A){
		int count = 0;
		boolean flag = false;
		HashSet<Integer> cheack = new HashSet<Integer>();
		
		for(int now : A){
			if (!cheack.contains(now)) {
				cheack.add(now);
				count++;
				flag = true;
			}
			else {
				if (flag) {
					count--;
				}
				flag = false;
			}
		}
		
		if(count > 0) return count; else return 0;
	}
	
	public static void main(String[] args){
		Scanner S = new Scanner(System.in);
		int N = S.nextInt();
		int A[] = new int[N];

		for (int i = 0; i < N; i++) {
			A[i] = S.nextInt();
		}
		
		System.out.println(solve(A));
	}
}
0