結果

問題 No.182 新規性の虜
ユーザー kawacchukawacchu
提出日時 2019-03-10 18:33:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,688 KB
最終ジャッジ日時 2024-06-23 15:20:07
合計ジャッジ時間 2,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 58 ms
18,020 KB
testcase_09 AC 75 ms
20,496 KB
testcase_10 AC 69 ms
19,576 KB
testcase_11 AC 63 ms
18,548 KB
testcase_12 AC 43 ms
14,064 KB
testcase_13 AC 30 ms
10,752 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,752 KB
testcase_18 AC 68 ms
15,656 KB
testcase_19 AC 56 ms
14,240 KB
testcase_20 AC 46 ms
12,800 KB
testcase_21 AC 72 ms
16,412 KB
testcase_22 AC 50 ms
13,440 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 87 ms
22,688 KB
testcase_25 AC 63 ms
12,768 KB
testcase_26 AC 35 ms
11,776 KB
testcase_27 AC 29 ms
10,624 KB
evil01.txt AC 90 ms
25,452 KB
evil02.txt AC 89 ms
25,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(str,input().split()))
D = {}
for n in L :
    if n not in D :
        D[n] = 1
    else :
        D[n] += 1

ans = list(D.values()).count(1)
print(ans)
0