結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2024-07-15 09:27:20 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 96 ms / 5,000 ms |
| + 935µs | |
| コード長 | 181 bytes |
| 記録 | |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 96,112 KB |
| 実行使用メモリ | 99,532 KB |
| 最終ジャッジ日時 | 2026-08-13 05:40:16 |
| 合計ジャッジ時間 | 4,732 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
from collections import Counter
N = int(input())
A = list(map(int, input().split()))
freq = Counter(A)
ans = 0
for v in freq.values():
if v == 1:
ans += 1
print(ans)
norioc