結果

問題 No.182 新規性の虜
ユーザー ktshunktshun
提出日時 2015-05-28 17:20:14
言語 Python2
(2.7.18)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 27,900 KB
最終ジャッジ日時 2024-12-26 19:15:21
合計ジャッジ時間 4,217 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
6,528 KB
testcase_01 AC 15 ms
6,656 KB
testcase_02 AC 15 ms
6,656 KB
testcase_03 AC 14 ms
6,528 KB
testcase_04 AC 15 ms
6,528 KB
testcase_05 AC 14 ms
6,656 KB
testcase_06 AC 15 ms
6,528 KB
testcase_07 AC 15 ms
6,528 KB
testcase_08 AC 101 ms
17,260 KB
testcase_09 AC 160 ms
22,652 KB
testcase_10 AC 140 ms
20,636 KB
testcase_11 AC 122 ms
18,560 KB
testcase_12 AC 65 ms
13,364 KB
testcase_13 AC 17 ms
6,528 KB
testcase_14 AC 15 ms
6,528 KB
testcase_15 AC 16 ms
6,528 KB
testcase_16 AC 14 ms
6,656 KB
testcase_17 AC 15 ms
6,528 KB
testcase_18 AC 94 ms
12,980 KB
testcase_19 AC 74 ms
11,040 KB
testcase_20 AC 50 ms
9,708 KB
testcase_21 AC 102 ms
13,820 KB
testcase_22 AC 61 ms
10,108 KB
testcase_23 AC 15 ms
6,656 KB
testcase_24 AC 167 ms
27,900 KB
testcase_25 AC 85 ms
8,132 KB
testcase_26 AC 33 ms
8,888 KB
testcase_27 AC 15 ms
6,656 KB
evil01.txt AC 187 ms
28,028 KB
evil02.txt AC 207 ms
28,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding:utf-8 -*-
from collections import Counter

if __name__ == "__main__":
	n = input()
	nums = map(int,raw_input().split())
	count = Counter(nums)
	ans = 0
	for i, cnt in count.most_common()[::-1]:
		if cnt == 1:
			ans += 1
		else:
			break
	print ans
0