結果

問題 No.182 新規性の虜
ユーザー Luoto-greenLuoto-green
提出日時 2017-07-07 11:41:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 110 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 10,568 KB
実行使用メモリ 21,860 KB
最終ジャッジ日時 2023-08-27 15:49:09
合計ジャッジ時間 2,144 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,304 KB
testcase_01 AC 18 ms
8,264 KB
testcase_02 AC 19 ms
8,368 KB
testcase_03 AC 18 ms
8,328 KB
testcase_04 AC 18 ms
8,356 KB
testcase_05 AC 18 ms
8,260 KB
testcase_06 AC 18 ms
8,304 KB
testcase_07 AC 18 ms
8,356 KB
testcase_08 AC 36 ms
15,452 KB
testcase_09 AC 48 ms
17,748 KB
testcase_10 AC 43 ms
16,772 KB
testcase_11 AC 39 ms
16,064 KB
testcase_12 AC 27 ms
11,372 KB
testcase_13 AC 18 ms
8,304 KB
testcase_14 AC 18 ms
8,312 KB
testcase_15 AC 18 ms
8,452 KB
testcase_16 AC 18 ms
8,324 KB
testcase_17 AC 18 ms
8,412 KB
testcase_18 AC 36 ms
13,972 KB
testcase_19 AC 32 ms
12,376 KB
testcase_20 AC 25 ms
10,872 KB
testcase_21 AC 39 ms
14,632 KB
testcase_22 AC 28 ms
11,444 KB
testcase_23 AC 18 ms
8,356 KB
testcase_24 AC 54 ms
21,860 KB
testcase_25 AC 28 ms
9,440 KB
testcase_26 AC 21 ms
9,512 KB
testcase_27 AC 18 ms
8,324 KB
evil01.txt AC 55 ms
22,448 KB
evil02.txt AC 57 ms
22,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = input()
print(sum([i for i in Counter(input().split()).values() if i==1]))
0