結果

問題 No.182 新規性の虜
ユーザー emqk5RBeemqk5RBe
提出日時 2019-09-25 15:43:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 11,852 KB
実行使用メモリ 26,932 KB
最終ジャッジ日時 2023-10-22 05:44:00
合計ジャッジ時間 2,857 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,100 KB
testcase_01 AC 30 ms
10,100 KB
testcase_02 AC 33 ms
10,100 KB
testcase_03 AC 30 ms
10,100 KB
testcase_04 AC 30 ms
10,100 KB
testcase_05 AC 30 ms
10,100 KB
testcase_06 AC 31 ms
10,100 KB
testcase_07 AC 30 ms
10,100 KB
testcase_08 AC 69 ms
18,612 KB
testcase_09 AC 100 ms
22,364 KB
testcase_10 AC 89 ms
21,080 KB
testcase_11 AC 78 ms
19,912 KB
testcase_12 AC 51 ms
15,076 KB
testcase_13 AC 30 ms
10,100 KB
testcase_14 AC 32 ms
10,100 KB
testcase_15 AC 31 ms
10,100 KB
testcase_16 AC 30 ms
10,100 KB
testcase_17 AC 30 ms
10,100 KB
testcase_18 AC 66 ms
18,324 KB
testcase_19 AC 56 ms
16,036 KB
testcase_20 AC 47 ms
14,172 KB
testcase_21 AC 69 ms
19,504 KB
testcase_22 AC 50 ms
14,620 KB
testcase_23 AC 29 ms
10,100 KB
testcase_24 AC 112 ms
26,932 KB
testcase_25 AC 54 ms
11,892 KB
testcase_26 AC 38 ms
11,724 KB
testcase_27 AC 30 ms
10,100 KB
evil01.txt AC 116 ms
26,932 KB
evil02.txt AC 121 ms
26,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
num=int(input())
l=list(map(int,input().split()))
cnt=0
for t in collections.Counter(l).most_common()[::-1]:
    if t[1]>1:
        break
    cnt+=1
print(cnt)
0