結果

問題 No.2851 Make Pairs
ユーザー rlangevinrlangevin
提出日時 2024-09-28 14:30:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 114,392 KB
最終ジャッジ日時 2024-09-28 14:31:06
合計ジャッジ時間 1,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,056 KB
testcase_01 AC 37 ms
53,284 KB
testcase_02 AC 105 ms
110,400 KB
testcase_03 AC 106 ms
110,784 KB
testcase_04 AC 114 ms
107,756 KB
testcase_05 AC 79 ms
99,368 KB
testcase_06 AC 107 ms
114,392 KB
testcase_07 AC 37 ms
54,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
C = Counter(map(int, input().split()))
ans = 0
for k, v in C.items():
	ans += v // 2
print(ans)
0