結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
51,456 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 78 ms
85,504 KB
testcase_09 AC 95 ms
100,864 KB
testcase_10 AC 88 ms
96,000 KB
testcase_11 AC 81 ms
88,832 KB
testcase_12 AC 61 ms
71,680 KB
testcase_13 AC 40 ms
51,456 KB
testcase_14 AC 40 ms
51,456 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 39 ms
51,712 KB
testcase_17 AC 39 ms
51,456 KB
testcase_18 AC 67 ms
78,080 KB
testcase_19 AC 65 ms
73,600 KB
testcase_20 AC 63 ms
70,528 KB
testcase_21 AC 71 ms
80,512 KB
testcase_22 AC 63 ms
71,552 KB
testcase_23 AC 40 ms
51,584 KB
testcase_24 AC 91 ms
103,296 KB
testcase_25 AC 65 ms
78,592 KB
testcase_26 AC 52 ms
63,872 KB
testcase_27 AC 40 ms
51,840 KB
evil01.txt AC 96 ms
106,752 KB
evil02.txt AC 96 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:d[x]==1,d.keys()))))
0