結果

問題 No.2851 Make Pairs
ユーザー tkykwtnb
提出日時 2025-01-17 23:46:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 108 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 185,088 KB
最終ジャッジ日時 2025-01-17 23:46:24
合計ジャッジ時間 13,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 TLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
ans=0
S=set(A)
for s in S:
    ans+=A.count(s)//2
print(ans)
0