結果

問題 No.182 新規性の虜
ユーザー emqk5RBeemqk5RBe
提出日時 2019-09-25 15:43:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,120 KB
最終ジャッジ日時 2024-09-22 07:04:00
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 72 ms
19,584 KB
testcase_09 AC 98 ms
23,088 KB
testcase_10 AC 94 ms
21,776 KB
testcase_11 AC 79 ms
20,648 KB
testcase_12 AC 52 ms
15,852 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 67 ms
17,964 KB
testcase_19 AC 54 ms
15,904 KB
testcase_20 AC 45 ms
14,080 KB
testcase_21 AC 68 ms
18,968 KB
testcase_22 AC 49 ms
14,840 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 108 ms
28,120 KB
testcase_25 AC 56 ms
12,732 KB
testcase_26 AC 38 ms
12,416 KB
testcase_27 AC 29 ms
10,624 KB
evil01.txt AC 116 ms
27,532 KB
evil02.txt AC 114 ms
27,588 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