結果

問題 No.182 新規性の虜
ユーザー jamadjamad
提出日時 2017-07-14 05:15:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 118 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,164 KB
最終ジャッジ日時 2024-12-27 16:52:51
合計ジャッジ時間 3,409 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,368 KB
testcase_01 AC 29 ms
10,368 KB
testcase_02 AC 29 ms
10,368 KB
testcase_03 AC 30 ms
10,368 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 29 ms
10,368 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 30 ms
10,368 KB
testcase_08 AC 70 ms
19,888 KB
testcase_09 AC 89 ms
22,808 KB
testcase_10 AC 88 ms
21,756 KB
testcase_11 AC 77 ms
20,060 KB
testcase_12 AC 50 ms
15,008 KB
testcase_13 AC 30 ms
10,240 KB
testcase_14 AC 32 ms
10,368 KB
testcase_15 AC 30 ms
10,496 KB
testcase_16 AC 29 ms
10,368 KB
testcase_17 AC 30 ms
10,368 KB
testcase_18 AC 73 ms
15,404 KB
testcase_19 AC 60 ms
14,240 KB
testcase_20 AC 49 ms
13,056 KB
testcase_21 AC 78 ms
15,900 KB
testcase_22 AC 56 ms
13,488 KB
testcase_23 AC 28 ms
10,496 KB
testcase_24 AC 88 ms
27,164 KB
testcase_25 AC 71 ms
11,588 KB
testcase_26 AC 36 ms
12,032 KB
testcase_27 AC 29 ms
10,368 KB
evil01.txt AC 97 ms
28,996 KB
evil02.txt AC 102 ms
28,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
A={}
for x in map(int,input().split()):
    if x in A:A[x]+=1
    else:A[x]=1
print(sum([A[k]==1 for k in A]))
0