結果

問題 No.182 新規性の虜
ユーザー iad_2889
提出日時 2019-05-02 03:58:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 478 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,272 KB
最終ジャッジ日時 2024-12-31 13:00:27
合計ジャッジ時間 57,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18 TLE * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
nums = [int(x) for x in input().split()]
num_type = set(nums)
if len(num_type) == N:
    newly = N
else:
    newly = 0
    current = None
    while nums:
        current = nums.pop(0)
        if current in nums:
            idxs = []
            for idx,num in enumerate(nums):
                if num == current:
                    idxs.insert(0,idx)
            for idx in idxs:
                del nums[idx]
        else:
            newly +=1

print(newly)
0