結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-04 10:10:20 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
AC
|
| 実行時間 | 95 ms / 5,000 ms |
| + 745µs | |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 1,728 ms |
| コンパイル使用メモリ | 95,216 KB |
| 実行使用メモリ | 117,888 KB |
| 最終ジャッジ日時 | 2026-08-26 23:27:02 |
| 合計ジャッジ時間 | 6,088 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
n=int(input())
d={}
for i in list(map(int,input().split())):
if i in d:
d[i]+=1
else:
d[i]=1
print(len(list(filter(lambda x:d[x]==1,d.keys()))))