結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
gr1msl3y
|
| 提出日時 | 2021-11-03 19:52:54 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 59 ms / 5,000 ms |
| コード長 | 152 bytes |
| 記録 | |
| コンパイル時間 | 142 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 99,328 KB |
| 最終ジャッジ日時 | 2026-04-30 20:17:01 |
| 合計ジャッジ時間 | 3,070 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
from collections import Counter
N=int(input())
A=list(map(int,input().split()))
C=Counter(A)
ans=0
for a in C:
if C[a]<2:
ans+=1
print(ans)
gr1msl3y