結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-01-25 23:11:18 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 450 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 26,884 KB |
| 最終ジャッジ日時 | 2026-06-01 12:35:17 |
| 合計ジャッジ時間 | 8,288 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 TLE * 1 -- * 21 |
ソースコード
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)