結果
問題 |
No.182 新規性の虜
|
ユーザー |
|
提出日時 | 2022-03-24 22:58:12 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 197 bytes |
コンパイル時間 | 182 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 65,664 KB |
最終ジャッジ日時 | 2024-10-13 06:38:05 |
合計ジャッジ時間 | 3,106 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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)