結果

問題 No.182 新規性の虜
ユーザー yuki2006yuki2006
提出日時 2016-07-10 18:01:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 642 ms / 5,000 ms
コード長 566 bytes
コンパイル時間 3,921 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 54,760 KB
最終ジャッジ日時 2024-06-08 07:39:27
合計ジャッジ時間 13,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,368 KB
testcase_01 AC 118 ms
41,464 KB
testcase_02 AC 117 ms
41,496 KB
testcase_03 AC 111 ms
41,336 KB
testcase_04 AC 123 ms
41,100 KB
testcase_05 AC 119 ms
40,412 KB
testcase_06 AC 110 ms
41,308 KB
testcase_07 AC 117 ms
41,440 KB
testcase_08 AC 522 ms
51,276 KB
testcase_09 AC 642 ms
52,472 KB
testcase_10 AC 567 ms
52,492 KB
testcase_11 AC 559 ms
51,908 KB
testcase_12 AC 376 ms
49,396 KB
testcase_13 AC 120 ms
41,344 KB
testcase_14 AC 118 ms
41,584 KB
testcase_15 AC 121 ms
41,108 KB
testcase_16 AC 108 ms
41,312 KB
testcase_17 AC 123 ms
41,456 KB
testcase_18 AC 539 ms
49,284 KB
testcase_19 AC 477 ms
49,176 KB
testcase_20 AC 424 ms
48,868 KB
testcase_21 AC 565 ms
49,264 KB
testcase_22 AC 412 ms
49,132 KB
testcase_23 AC 116 ms
41,056 KB
testcase_24 AC 512 ms
54,760 KB
testcase_25 AC 517 ms
48,060 KB
testcase_26 AC 271 ms
46,752 KB
testcase_27 AC 124 ms
41,552 KB
evil01.txt AC 603 ms
54,532 KB
evil02.txt AC 604 ms
54,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
        HashSet<Integer> nums = new HashSet<>();
        HashSet<Integer> doubles = new HashSet<>();
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        for (int i = 0; i < N; i++) {
            int v = scanner.nextInt();
            if (nums.contains(v)) {
                doubles.add(v);
            }
            nums.add(v);
        }
        System.out.println(nums.size() - doubles.size());


    }
}
0