結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-08-17 22:09:26 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 214 bytes |
| 記録 | |
| コンパイル時間 | 271 ms |
| コンパイル使用メモリ | 77,728 KB |
| 最終ジャッジ日時 | 2025-12-03 21:14:48 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 TLE * 2 -- * 5 |
ソースコード
#!/usr/bin/python
# -*- coding: utf-8 -*-
### INPUT ###
N = int(raw_input())
arys= map(int, raw_input().split())
list = set(arys)
ans = 0
for i in list:
if arys.count(i) == 1:
ans += 1
print ans