結果

問題 No.182 新規性の虜
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-24 15:34:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 75,492 KB
実行使用メモリ 63,540 KB
最終ジャッジ日時 2024-07-07 17:25:02
合計ジャッジ時間 12,421 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,136 KB
testcase_01 AC 114 ms
52,792 KB
testcase_02 AC 124 ms
54,484 KB
testcase_03 AC 122 ms
53,996 KB
testcase_04 AC 105 ms
52,720 KB
testcase_05 AC 127 ms
54,000 KB
testcase_06 AC 129 ms
54,212 KB
testcase_07 AC 128 ms
54,040 KB
testcase_08 AC 540 ms
61,860 KB
testcase_09 AC 658 ms
61,772 KB
testcase_10 AC 568 ms
61,532 KB
testcase_11 AC 573 ms
61,688 KB
testcase_12 AC 410 ms
59,244 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 123 ms
54,416 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 116 ms
54,012 KB
testcase_24 AC 518 ms
63,540 KB
testcase_25 AC 492 ms
59,260 KB
testcase_26 AC 271 ms
58,588 KB
testcase_27 AC 106 ms
55,012 KB
evil01.txt AC 598 ms
65,888 KB
evil02.txt AC 612 ms
66,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
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)) {
				count--;
				continue;
			}
			else {
				cheack.add(now);
				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