結果

問題 No.2851 Make Pairs
ユーザー titiatitia
提出日時 2024-08-27 03:34:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,028 KB
最終ジャッジ日時 2024-08-27 03:34:53
合計ジャッジ時間 2,516 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 189 ms
28,748 KB
testcase_03 AC 209 ms
29,800 KB
testcase_04 AC 199 ms
29,412 KB
testcase_05 AC 134 ms
31,028 KB
testcase_06 AC 203 ms
29,404 KB
testcase_07 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

A.sort(reverse=True)
ANS=0

while A:
    if len(A)>=2:
        if A[-1]==A[-2]:
            ANS+=1
            A.pop()
            A.pop()
        else:
            A.pop()
    else:
        A.pop()

print(ANS)
0