結果
問題 | No.182 新規性の虜 |
ユーザー |
|
提出日時 | 2016-08-25 15:56:21 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 136 ms / 5,000 ms |
コード長 | 204 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 6,784 KB |
実行使用メモリ | 20,216 KB |
最終ジャッジ日時 | 2024-12-27 08:01:38 |
合計ジャッジ時間 | 3,301 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
# Here your code ! from collections import defaultdict n = input() d = defaultdict(int) l = map(int,raw_input().split()) for t in l: d[t] +=1 c =0 for i in d: if d[i] == 1: c += 1 print c