結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-11-04 13:39:04 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 61 ms / 5,000 ms |
| + 659µs | |
| コード長 | 154 bytes |
| 記録 | |
| コンパイル時間 | 76 ms |
| コンパイル使用メモリ | 80,640 KB |
| 実行使用メモリ | 101,632 KB |
| 最終ジャッジ日時 | 2026-09-19 09:27:21 |
| 合計ジャッジ時間 | 3,101 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
from collections import Counter N = int(input()) A = list(map(int, input().split())) C = Counter(A) ans = sum(1 for c in C.values() if c == 1) print(ans)