結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-05-28 17:23:16 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 241 bytes |
| 記録 | |
| コンパイル時間 | 119 ms |
| コンパイル使用メモリ | 77,456 KB |
| 最終ジャッジ日時 | 2025-12-03 15:18:17 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 TLE * 2 -- * 5 |
ソースコード
# -*- coding:utf-8 -*- from collections import Counter if __name__ == "__main__": n = input() nums = map(int,raw_input().split()) ans = 0 #使わないバージョン for i in set(nums): if nums.count(i) == 1: ans += 1 print ans