結果

問題 No.2851 Make Pairs
ユーザー 👑 rin204rin204
提出日時 2024-08-25 14:56:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 134,500 KB
最終ジャッジ日時 2024-08-25 14:56:52
合計ジャッジ時間 1,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,196 KB
testcase_01 AC 37 ms
52,468 KB
testcase_02 AC 105 ms
117,728 KB
testcase_03 AC 102 ms
123,228 KB
testcase_04 AC 105 ms
124,128 KB
testcase_05 AC 90 ms
106,500 KB
testcase_06 AC 106 ms
134,500 KB
testcase_07 AC 39 ms
52,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
cnt = 0
se = set()
for a in A:
    if a in se:
        cnt += 1
        se.remove(a)
    else:
        se.add(a)

print(cnt)
0