結果
問題 | No.182 新規性の虜 |
ユーザー |
![]() |
提出日時 | 2020-11-04 22:37:42 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 199 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 82,452 KB |
実行使用メモリ | 67,216 KB |
最終ジャッジ日時 | 2024-07-22 10:27:45 |
合計ジャッジ時間 | 3,074 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 27 |
ソースコード
N=int(input().split()) D={} L=list(map(int,input().split())) for i in L: if i not in D: D[i]=1 else: D[i]+=1 ans=0 for k,v in D.items(): if v==1: ans+=1 print(ans)