結果

問題 No.2851 Make Pairs
ユーザー shobonvipshobonvip
提出日時 2024-08-25 13:32:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 109,512 KB
最終ジャッジ日時 2024-08-25 13:32:41
合計ジャッジ時間 1,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,504 KB
testcase_01 AC 37 ms
55,096 KB
testcase_02 AC 109 ms
108,580 KB
testcase_03 AC 116 ms
107,836 KB
testcase_04 AC 121 ms
106,584 KB
testcase_05 AC 89 ms
106,552 KB
testcase_06 AC 120 ms
109,512 KB
testcase_07 AC 39 ms
54,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
a = list(map(int,input().split()))
c = Counter(a)
ans = 0
for i, d in c.items():
	ans += d//2
print(ans)
0