結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,688 KB
testcase_01 AC 41 ms
54,120 KB
testcase_02 AC 119 ms
112,028 KB
testcase_03 AC 123 ms
111,084 KB
testcase_04 AC 127 ms
107,532 KB
testcase_05 AC 88 ms
99,088 KB
testcase_06 AC 119 ms
114,528 KB
testcase_07 AC 39 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
input()
print(sum(v // 2 for v in Counter(map(int, input().split())).values()))
0