結果

問題 No.182 新規性の虜
ユーザー iad_2889iad_2889
提出日時 2019-05-02 04:17:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,380 KB
最終ジャッジ日時 2024-06-10 03:52:21
合計ジャッジ時間 2,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 24 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 70 ms
19,588 KB
testcase_09 AC 97 ms
23,092 KB
testcase_10 AC 95 ms
21,784 KB
testcase_11 AC 78 ms
20,640 KB
testcase_12 AC 47 ms
15,848 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 24 ms
10,752 KB
testcase_16 AC 25 ms
10,880 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 70 ms
17,964 KB
testcase_19 AC 58 ms
16,028 KB
testcase_20 AC 45 ms
13,952 KB
testcase_21 AC 79 ms
18,968 KB
testcase_22 AC 52 ms
14,728 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 112 ms
27,380 KB
testcase_25 AC 71 ms
12,604 KB
testcase_26 AC 37 ms
12,416 KB
testcase_27 AC 25 ms
10,752 KB
evil01.txt AC 112 ms
27,332 KB
evil02.txt AC 118 ms
27,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
#nums = map(int,input().split())
nums = [int(x) for x in input().split()]
num_dict = {}
for num in nums:
    num_dict.setdefault(num,0)
    num_dict[num]+=1
newly = len([x for x in num_dict.items() if x[1] == 1])
print(newly)
0