結果

問題 No.182 新規性の虜
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-22 05:31:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 211 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 96,128 KB
最終ジャッジ日時 2024-10-15 06:44:46
合計ジャッジ時間 3,481 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 65 ms
81,664 KB
testcase_09 AC 78 ms
95,104 KB
testcase_10 AC 74 ms
91,648 KB
testcase_11 AC 71 ms
84,992 KB
testcase_12 AC 54 ms
70,600 KB
testcase_13 AC 37 ms
51,712 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 37 ms
51,584 KB
testcase_16 AC 37 ms
51,712 KB
testcase_17 AC 38 ms
51,968 KB
testcase_18 AC 64 ms
79,232 KB
testcase_19 AC 58 ms
74,112 KB
testcase_20 AC 53 ms
68,608 KB
testcase_21 AC 64 ms
80,128 KB
testcase_22 AC 55 ms
71,168 KB
testcase_23 AC 38 ms
51,584 KB
testcase_24 AC 78 ms
96,128 KB
testcase_25 AC 60 ms
78,976 KB
testcase_26 AC 47 ms
63,488 KB
testcase_27 AC 38 ms
51,968 KB
evil01.txt AC 82 ms
99,328 KB
evil02.txt AC 83 ms
99,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
d = {}
for a in A:
    if a not in d:
        d[a] = 1
    else:
        d[a] += 1

ans = 0
for k, v in d.items():
    if v == 1:
        ans += 1
print(ans)
0