結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-01-25 23:11:18 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 264 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 33,896 KB |
| 最終ジャッジ日時 | 2024-12-26 15:44:51 |
| 合計ジャッジ時間 | 83,851 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 TLE * 13 |
ソースコード
num = int(input())
seq = input().split()
seq_uniq = list(set(seq))
count = 0
for i in seq_uniq:
if seq.count(i) == 1:
count += 1
print(count)