結果

問題 No.2851 Make Pairs
ユーザー AD010AD010
提出日時 2024-08-25 14:38:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,764 KB
最終ジャッジ日時 2024-08-25 14:38:30
合計ジャッジ時間 1,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 159 ms
28,868 KB
testcase_03 AC 158 ms
29,668 KB
testcase_04 AC 169 ms
29,404 KB
testcase_05 AC 160 ms
30,764 KB
testcase_06 AC 156 ms
29,532 KB
testcase_07 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int,input().split()))
cnt = [0]*(N+1)
ans = 0

for i in range(N):
    cnt[a[i]] += 1

for i in range(N+1):
    ans += cnt[i]//2

print(ans)

0