結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-24 22:58:12 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 197 bytes |
| 記録 | |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 66,176 KB |
| 最終ジャッジ日時 | 2026-04-30 15:07:59 |
| 合計ジャッジ時間 | 2,747 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 27 |
ソースコード
N = int(input())
A = lsit(map(int,input().split()))
from collections import defaultdict
d = defaultdict(int)
for a in A:
d[a] += 1
ans = 0
for v in d.values():
if v == 1:ans += 1
print(ans)