結果

問題 No.2851 Make Pairs
ユーザー tentententen
提出日時 2024-08-26 16:18:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 1,392 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 79,204 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-08-26 16:18:43
合計ジャッジ時間 5,670 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,308 KB
testcase_01 AC 57 ms
50,304 KB
testcase_02 AC 364 ms
62,620 KB
testcase_03 AC 410 ms
62,768 KB
testcase_04 AC 386 ms
62,596 KB
testcase_05 AC 305 ms
57,884 KB
testcase_06 AC 399 ms
69,120 KB
testcase_07 AC 55 ms
50,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        Set<Integer> exists = new HashSet<>();
        int ans = 0;
        while (n-- > 0) {
            int x = sc.nextInt();
            if (exists.contains(x)) {
                exists.remove(x);
                ans++;
            } else {
                exists.add(x);
            }
        }
        System.out.println(ans);
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0