結果

問題 No.182 新規性の虜
ユーザー k0825k0825
提出日時 2019-04-06 14:53:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 134 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 10,576 KB
実行使用メモリ 22,324 KB
最終ジャッジ日時 2023-09-06 03:56:13
合計ジャッジ時間 2,762 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,848 KB
testcase_01 AC 16 ms
7,860 KB
testcase_02 AC 15 ms
7,860 KB
testcase_03 AC 15 ms
7,796 KB
testcase_04 AC 15 ms
7,872 KB
testcase_05 AC 15 ms
7,812 KB
testcase_06 AC 15 ms
7,800 KB
testcase_07 AC 16 ms
7,840 KB
testcase_08 AC 45 ms
16,716 KB
testcase_09 AC 67 ms
18,560 KB
testcase_10 AC 56 ms
18,328 KB
testcase_11 AC 51 ms
18,200 KB
testcase_12 AC 31 ms
12,756 KB
testcase_13 AC 15 ms
7,820 KB
testcase_14 AC 16 ms
7,892 KB
testcase_15 AC 15 ms
7,820 KB
testcase_16 AC 14 ms
7,796 KB
testcase_17 AC 15 ms
7,900 KB
testcase_18 AC 56 ms
16,380 KB
testcase_19 AC 44 ms
14,128 KB
testcase_20 AC 33 ms
11,992 KB
testcase_21 AC 61 ms
17,464 KB
testcase_22 AC 36 ms
12,684 KB
testcase_23 AC 15 ms
7,856 KB
testcase_24 AC 68 ms
22,324 KB
testcase_25 AC 53 ms
9,924 KB
testcase_26 AC 21 ms
9,808 KB
testcase_27 AC 15 ms
7,856 KB
evil01.txt AC 69 ms
22,988 KB
evil02.txt AC 74 ms
23,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input();b={}
a=list(map(int,input().split()))
for _ in a:
	if _ not in b:
		b[_]=1
	else:
		b[_]+=1
print(list(b.values()).count(1))
0