結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-27 17:50:47 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 50 ms / 5,000 ms |
| + 735µs | |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 203 ms |
| コンパイル使用メモリ | 81,260 KB |
| 実行使用メモリ | 96,340 KB |
| 最終ジャッジ日時 | 2026-09-20 21:28:15 |
| 合計ジャッジ時間 | 3,238 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
from collections import defaultdict
N = int(input())
C = defaultdict(int)
for a in map(int, input().split()):
C[a] += 1
print(list(C.values()).count(1))