結果

問題 No.2851 Make Pairs
ユーザー KKT89KKT89
提出日時 2024-09-21 14:35:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 206,196 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-09-21 14:35:37
合計ジャッジ時間 3,326 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 86 ms
7,040 KB
testcase_03 AC 91 ms
7,296 KB
testcase_04 AC 97 ms
7,424 KB
testcase_05 AC 23 ms
5,376 KB
testcase_06 AC 108 ms
12,800 KB
testcase_07 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n;
    cin >> n;
    set<int> st;
    int res = 0;
    for (int i = 0; i < n; ++i) {
        int a;
        cin >> a;
        if (st.find(a) == st.end()) {
            st.insert(a);
        } else {
            res += 1;
            st.erase(a);
        }
    }
    cout << res << endl;
}
0