結果
問題 |
No.182 新規性の虜
|
ユーザー |
![]() |
提出日時 | 2017-07-27 10:54:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 199 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 23,304 KB |
最終ジャッジ日時 | 2024-10-10 02:03:23 |
合計ジャッジ時間 | 8,298 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 TLE * 1 -- * 21 |
ソースコード
N = int(input()) A = [int(i) for i in input().split()] A.sort() M = 0 ch = 0 while ch != N: if A.count(A[ch]) == 1: M += 1 ch += 1 else: ch += A.count(A[ch]) print(M)