結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
_KingdomOfMoray
|
| 提出日時 | 2019-12-22 13:58:08 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 101 ms / 5,000 ms |
| コード長 | 252 bytes |
| コンパイル時間 | 104 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 25,304 KB |
| 最終ジャッジ日時 | 2024-09-14 05:34:42 |
| 合計ジャッジ時間 | 2,772 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
import collections
n = int(input())
a_list = list(map(int,input().split()))
a_clc = collections.Counter(a_list)
count = 0
for cur in a_clc.keys():
num_cur = a_clc[cur]
if num_cur == 1:
count += 1
res = count
print(res)
_KingdomOfMoray