結果

問題 No.2851 Make Pairs
ユーザー noriocnorioc
提出日時 2024-08-25 23:42:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 109,380 KB
最終ジャッジ日時 2024-08-25 23:42:56
合計ジャッジ時間 1,772 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,624 KB
testcase_01 AC 41 ms
54,460 KB
testcase_02 AC 114 ms
108,980 KB
testcase_03 AC 118 ms
107,904 KB
testcase_04 AC 123 ms
106,520 KB
testcase_05 AC 88 ms
107,036 KB
testcase_06 AC 118 ms
109,380 KB
testcase_07 AC 40 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
A = list(map(int, input().split()))

freq = Counter(A)
ans = 0
for v in freq.values():
    ans += v // 2

print(ans)
0