結果

問題 No.182 新規性の虜
ユーザー iad_2889
提出日時 2019-05-02 03:57:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 34,588 KB
最終ジャッジ日時 2024-12-31 12:59:22
合計ジャッジ時間 58,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 13 WA * 5 OLE * 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)
        print(current)
        print(nums)
        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