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