結果
問題 |
No.182 新規性の虜
|
ユーザー |
|
提出日時 | 2015-09-23 06:08:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 108 ms / 5,000 ms |
コード長 | 176 bytes |
コンパイル時間 | 490 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 95,820 KB |
最終ジャッジ日時 | 2024-12-26 19:42:46 |
合計ジャッジ時間 | 3,939 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
n = input() d = {} for c in input().split(): i = int(c) if i not in d: d.update({i:1}) else: d[i] += 1 print(sum([1 for i in d.values() if i == 1]))