結果

問題 No.2851 Make Pairs
ユーザー Basin-BugBasin-Bug
提出日時 2024-08-25 13:33:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,992 KB
最終ジャッジ日時 2024-08-25 13:33:16
合計ジャッジ時間 1,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,308 KB
testcase_01 AC 42 ms
54,540 KB
testcase_02 AC 118 ms
108,792 KB
testcase_03 AC 121 ms
107,736 KB
testcase_04 AC 123 ms
106,560 KB
testcase_05 AC 92 ms
106,784 KB
testcase_06 AC 119 ms
109,992 KB
testcase_07 AC 40 ms
54,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

cnt = Counter(A)
ans = 0
for i, j in cnt.items():
  ans += j // 2

print(ans)
0