結果

問題 No.182 新規性の虜
ユーザー yuki2006
提出日時 2015-06-24 17:12:33
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 762 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 75,580 KB
実行使用メモリ 61,608 KB
最終ジャッジ日時 2024-07-07 17:27:02
合計ジャッジ時間 12,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static int solve(int[] A){
        int count = 0;
        HashSet<Integer> cheack = new HashSet<Integer>();
        
        for(int now : A){
            if (!cheack.contains(now)) {
                cheack.add(now);
                count++;
            }
            else {
                 count--;
            }
        }
        
        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