結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-24 22:58:12 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 197 bytes |
| 記録 | |
| コンパイル時間 | 72 ms |
| コンパイル使用メモリ | 80,896 KB |
| 実行使用メモリ | 73,696 KB |
| 最終ジャッジ日時 | 2026-09-15 11:43:58 |
| 合計ジャッジ時間 | 3,200 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_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)