結果

問題 No.2851 Make Pairs
ユーザー 👑 KA37RIKA37RI
提出日時 2024-08-25 13:41:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 94,152 KB
最終ジャッジ日時 2024-08-25 13:41:11
合計ジャッジ時間 1,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
a = [int(x) for x in input().split()]
a.sort()

ans = 0
while len(a) > 1:
	if a[-1] == a[-2]:
		a.pop()
		ans += 1
	a.pop()
	
print(ans)
0