結果

問題 No.182 新規性の虜
ユーザー first_vilfirst_vil
提出日時 2020-08-04 10:10:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 155 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,168 KB
最終ジャッジ日時 2024-09-14 07:58:18
合計ジャッジ時間 3,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
51,456 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 74 ms
85,376 KB
testcase_09 AC 92 ms
100,736 KB
testcase_10 AC 79 ms
96,256 KB
testcase_11 AC 72 ms
89,088 KB
testcase_12 AC 54 ms
71,680 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 39 ms
51,980 KB
testcase_15 AC 39 ms
51,584 KB
testcase_16 AC 38 ms
51,712 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 64 ms
77,824 KB
testcase_19 AC 57 ms
73,472 KB
testcase_20 AC 55 ms
70,784 KB
testcase_21 AC 65 ms
80,128 KB
testcase_22 AC 56 ms
71,360 KB
testcase_23 AC 37 ms
51,584 KB
testcase_24 AC 84 ms
103,168 KB
testcase_25 AC 60 ms
79,232 KB
testcase_26 AC 46 ms
63,744 KB
testcase_27 AC 38 ms
51,712 KB
evil01.txt AC 88 ms
106,368 KB
evil02.txt AC 89 ms
106,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
d={}
for i in list(map(int,input().split())):
  if i in d:
    d[i]+=1
  else:
    d[i]=1
print(len(list(filter(lambda x:x==1,d.values()))))
0