結果

問題 No.182 新規性の虜
ユーザー shinwisteriashinwisteria
提出日時 2018-02-21 22:39:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 759 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 3,426 ms
コンパイル使用メモリ 76,184 KB
実行使用メモリ 64,904 KB
最終ジャッジ日時 2024-09-19 20:03:08
合計ジャッジ時間 14,656 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,068 KB
testcase_01 AC 122 ms
54,164 KB
testcase_02 AC 121 ms
54,148 KB
testcase_03 AC 126 ms
54,020 KB
testcase_04 AC 113 ms
53,016 KB
testcase_05 AC 112 ms
52,984 KB
testcase_06 AC 125 ms
54,068 KB
testcase_07 AC 114 ms
53,144 KB
testcase_08 AC 575 ms
60,752 KB
testcase_09 AC 759 ms
64,904 KB
testcase_10 AC 646 ms
63,560 KB
testcase_11 AC 699 ms
61,852 KB
testcase_12 AC 452 ms
59,128 KB
testcase_13 AC 127 ms
54,036 KB
testcase_14 AC 127 ms
54,108 KB
testcase_15 AC 122 ms
53,752 KB
testcase_16 AC 125 ms
53,988 KB
testcase_17 AC 130 ms
54,000 KB
testcase_18 AC 624 ms
59,652 KB
testcase_19 AC 521 ms
59,484 KB
testcase_20 AC 408 ms
59,464 KB
testcase_21 AC 612 ms
59,644 KB
testcase_22 AC 468 ms
59,172 KB
testcase_23 AC 119 ms
54,248 KB
testcase_24 AC 550 ms
64,856 KB
testcase_25 AC 435 ms
58,248 KB
testcase_26 AC 289 ms
58,644 KB
testcase_27 AC 126 ms
54,148 KB
evil01.txt AC 589 ms
67,288 KB
evil02.txt AC 643 ms
66,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
import java.util.TreeSet;
public class Con182 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		TreeSet<Integer> a = new TreeSet<>();
		TreeSet<Integer> b = new TreeSet<>();
		for(int i = 0;i < N;i++){
			int t = s.nextInt();
			if(a.contains(t)){
				b.add(t);
			}
			a.add(t);
		}
		s.close();
		System.out.println((a.size() - b.size()));
	}

}
0