結果

問題 No.182 新規性の虜
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-04-20 14:25:21
言語 Python2
(2.7.18)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 130 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 6,620 KB
実行使用メモリ 19,704 KB
最終ジャッジ日時 2023-08-27 07:15:13
合計ジャッジ時間 2,673 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,204 KB
testcase_01 AC 11 ms
6,336 KB
testcase_02 AC 10 ms
6,192 KB
testcase_03 AC 10 ms
6,300 KB
testcase_04 AC 11 ms
6,272 KB
testcase_05 AC 11 ms
6,296 KB
testcase_06 AC 12 ms
6,304 KB
testcase_07 AC 12 ms
6,204 KB
testcase_08 AC 52 ms
12,028 KB
testcase_09 AC 80 ms
13,412 KB
testcase_10 AC 70 ms
12,708 KB
testcase_11 AC 58 ms
12,168 KB
testcase_12 AC 31 ms
11,196 KB
testcase_13 AC 12 ms
6,340 KB
testcase_14 AC 11 ms
6,276 KB
testcase_15 AC 11 ms
6,200 KB
testcase_16 AC 12 ms
6,324 KB
testcase_17 AC 12 ms
6,276 KB
testcase_18 AC 65 ms
12,544 KB
testcase_19 AC 48 ms
10,672 KB
testcase_20 AC 34 ms
8,976 KB
testcase_21 AC 70 ms
13,312 KB
testcase_22 AC 38 ms
9,668 KB
testcase_23 AC 12 ms
6,384 KB
testcase_24 AC 82 ms
19,704 KB
testcase_25 AC 69 ms
7,592 KB
testcase_26 AC 21 ms
7,692 KB
testcase_27 AC 12 ms
6,320 KB
evil01.txt AC 86 ms
19,844 KB
evil02.txt AC 89 ms
19,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from collections import Counter
raw_input()
A = map(int, raw_input().split())
print Counter(A).values().count(1)
0