結果

問題 No.2851 Make Pairs
ユーザー nikoro256nikoro256
提出日時 2024-08-25 13:34:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 109,908 KB
最終ジャッジ日時 2024-08-25 13:34:25
合計ジャッジ時間 1,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,376 KB
testcase_01 AC 40 ms
55,104 KB
testcase_02 AC 115 ms
106,976 KB
testcase_03 AC 121 ms
106,912 KB
testcase_04 AC 130 ms
106,692 KB
testcase_05 AC 89 ms
107,020 KB
testcase_06 AC 119 ms
109,908 KB
testcase_07 AC 37 ms
54,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N=int(input())
A=list(map(int,input().split()))
dic=defaultdict(int)
for i in range(N):
    dic[A[i]]+=1
ans=0
for k in dic.keys():
    ans+=dic[k]//2
print(ans)
0