結果

問題 No.182 新規性の虜
ユーザー first_vilfirst_vil
提出日時 2020-08-04 10:10:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 156 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 87,268 KB
実行使用メモリ 110,960 KB
最終ジャッジ日時 2023-10-12 08:59:25
合計ジャッジ時間 4,800 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,492 KB
testcase_01 AC 72 ms
71,120 KB
testcase_02 AC 71 ms
71,436 KB
testcase_03 AC 72 ms
71,456 KB
testcase_04 AC 72 ms
71,348 KB
testcase_05 AC 74 ms
71,316 KB
testcase_06 AC 73 ms
71,360 KB
testcase_07 AC 73 ms
71,572 KB
testcase_08 AC 100 ms
94,488 KB
testcase_09 AC 116 ms
107,628 KB
testcase_10 AC 110 ms
103,700 KB
testcase_11 AC 104 ms
97,412 KB
testcase_12 AC 87 ms
82,672 KB
testcase_13 AC 73 ms
71,264 KB
testcase_14 AC 73 ms
71,572 KB
testcase_15 AC 73 ms
71,288 KB
testcase_16 AC 72 ms
71,336 KB
testcase_17 AC 73 ms
71,280 KB
testcase_18 AC 96 ms
87,292 KB
testcase_19 AC 92 ms
83,628 KB
testcase_20 AC 90 ms
80,224 KB
testcase_21 AC 98 ms
88,772 KB
testcase_22 AC 89 ms
81,692 KB
testcase_23 AC 73 ms
71,376 KB
testcase_24 AC 114 ms
110,960 KB
testcase_25 AC 91 ms
89,124 KB
testcase_26 AC 82 ms
77,232 KB
testcase_27 AC 74 ms
71,120 KB
evil01.txt AC 119 ms
112,012 KB
evil02.txt AC 120 ms
112,128 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:d[x]==1,d.keys()))))
0