結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,084 KB
testcase_01 AC 36 ms
52,528 KB
testcase_02 AC 106 ms
91,100 KB
testcase_03 AC 112 ms
93,680 KB
testcase_04 AC 115 ms
94,152 KB
testcase_05 AC 73 ms
92,712 KB
testcase_06 AC 107 ms
93,964 KB
testcase_07 AC 36 ms
52,900 KB
権限があれば一括ダウンロードができます

ソースコード

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