結果

問題 No.182 新規性の虜
ユーザー ktshunktshun
提出日時 2015-05-28 17:20:14
言語 Python2
(2.7.18)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 28,156 KB
最終ジャッジ日時 2024-06-08 03:04:34
合計ジャッジ時間 2,730 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,656 KB
testcase_01 AC 12 ms
6,784 KB
testcase_02 AC 12 ms
6,784 KB
testcase_03 AC 12 ms
6,656 KB
testcase_04 AC 12 ms
6,656 KB
testcase_05 AC 12 ms
6,656 KB
testcase_06 AC 12 ms
6,784 KB
testcase_07 AC 12 ms
6,784 KB
testcase_08 AC 88 ms
17,392 KB
testcase_09 AC 132 ms
22,780 KB
testcase_10 AC 109 ms
20,760 KB
testcase_11 AC 93 ms
18,948 KB
testcase_12 AC 48 ms
13,620 KB
testcase_13 AC 13 ms
6,784 KB
testcase_14 AC 13 ms
6,656 KB
testcase_15 AC 11 ms
6,656 KB
testcase_16 AC 12 ms
6,656 KB
testcase_17 AC 12 ms
6,784 KB
testcase_18 AC 74 ms
12,976 KB
testcase_19 AC 58 ms
11,292 KB
testcase_20 AC 42 ms
9,836 KB
testcase_21 AC 85 ms
13,948 KB
testcase_22 AC 50 ms
10,108 KB
testcase_23 AC 13 ms
6,784 KB
testcase_24 AC 141 ms
28,156 KB
testcase_25 AC 72 ms
8,388 KB
testcase_26 AC 29 ms
9,272 KB
testcase_27 AC 13 ms
6,656 KB
evil01.txt AC 150 ms
28,280 KB
evil02.txt AC 153 ms
28,280 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