結果

問題 No.182 新規性の虜
ユーザー yuki2006yuki2006
提出日時 2015-06-24 17:12:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 762 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 75,580 KB
実行使用メモリ 61,608 KB
最終ジャッジ日時 2024-07-07 17:27:02
合計ジャッジ時間 12,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,700 KB
testcase_01 AC 121 ms
53,816 KB
testcase_02 AC 121 ms
54,100 KB
testcase_03 AC 129 ms
54,288 KB
testcase_04 AC 129 ms
53,796 KB
testcase_05 AC 128 ms
53,832 KB
testcase_06 AC 125 ms
54,044 KB
testcase_07 AC 126 ms
54,204 KB
testcase_08 AC 521 ms
61,608 KB
testcase_09 AC 672 ms
50,512 KB
testcase_10 AC 614 ms
52,408 KB
testcase_11 AC 573 ms
50,992 KB
testcase_12 AC 420 ms
48,880 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 118 ms
41,464 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 119 ms
41,272 KB
testcase_24 AC 539 ms
53,284 KB
testcase_25 AC 555 ms
48,540 KB
testcase_26 AC 279 ms
47,756 KB
testcase_27 AC 127 ms
41,592 KB
evil01.txt AC 626 ms
56,952 KB
evil02.txt AC 610 ms
57,012 KB
権限があれば一括ダウンロードができます

ソースコード

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