結果

問題 No.182 新規性の虜
ユーザー boya978boya978
提出日時 2019-08-26 02:32:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 233 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,792 KB
最終ジャッジ日時 2024-11-07 10:12:33
合計ジャッジ時間 3,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 62 ms
17,764 KB
testcase_09 AC 82 ms
20,236 KB
testcase_10 AC 74 ms
19,320 KB
testcase_11 AC 67 ms
18,544 KB
testcase_12 AC 45 ms
13,696 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 60 ms
15,448 KB
testcase_19 AC 51 ms
14,196 KB
testcase_20 AC 41 ms
12,672 KB
testcase_21 AC 64 ms
15,640 KB
testcase_22 AC 48 ms
13,232 KB
testcase_23 AC 31 ms
10,496 KB
testcase_24 AC 92 ms
22,792 KB
testcase_25 AC 55 ms
11,964 KB
testcase_26 AC 35 ms
11,904 KB
testcase_27 AC 28 ms
10,624 KB
evil01.txt AC 95 ms
25,072 KB
evil02.txt AC 94 ms
24,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
data = input().split()
dict = {}

for i in data:
    if not i in dict:
        dict[i]=1
    else:
        dict[i]+=1
        
new=0

for key,cnt in dict.items():
    if cnt == 1:
        new +=1
        
print(new)
0