結果

問題 No.182 新規性の虜
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-24 16:46:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 1,756 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 53,224 KB
最終ジャッジ日時 2024-07-07 17:26:20
合計ジャッジ時間 11,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,428 KB
testcase_01 AC 107 ms
41,068 KB
testcase_02 AC 109 ms
40,896 KB
testcase_03 AC 101 ms
39,908 KB
testcase_04 AC 101 ms
40,040 KB
testcase_05 AC 111 ms
40,972 KB
testcase_06 AC 109 ms
41,104 KB
testcase_07 AC 114 ms
41,036 KB
testcase_08 AC 472 ms
50,252 KB
testcase_09 AC 554 ms
49,884 KB
testcase_10 AC 518 ms
51,244 KB
testcase_11 AC 471 ms
49,452 KB
testcase_12 AC 393 ms
48,788 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 104 ms
41,024 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 102 ms
39,924 KB
testcase_24 AC 485 ms
53,224 KB
testcase_25 AC 452 ms
48,236 KB
testcase_26 AC 252 ms
47,028 KB
testcase_27 AC 100 ms
39,952 KB
evil01.txt AC 562 ms
55,492 KB
evil02.txt AC 557 ms
56,740 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