結果

問題 No.2851 Make Pairs
ユーザー elphe
提出日時 2025-02-14 11:20:06
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 85,036 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-02-14 11:20:08
合計ジャッジ時間 2,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint32_t N, i;
	cin >> N;
	vector<uint32_t> A(N);
	for (i = 0; i != N; ++i) cin >> A[i];

	vector<uint32_t> count(N + 1, 0);
	for (i = 0; i != N; ++i)
		++count[A[i]];

	uint32_t ans = 0;
	for (i = 1; i <= N; ++i)
		ans += count[i] >> 1;

	cout << ans << '\n';
	return 0;
}
0