結果
問題 |
No.182 新規性の虜
|
ユーザー |
![]() |
提出日時 | 2019-02-28 21:27:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 171 bytes |
コンパイル時間 | 210 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-06-23 11:50:37 |
合計ジャッジ時間 | 7,711 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 TLE * 1 -- * 21 |
ソースコード
n=int(input()) a=[int(i) for i in input().split()] ans=0 for i in a: cnt=0 for j in a: if i==j: cnt+=1 if cnt==1: ans+=1 print(ans)