結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-09-25 15:43:03 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 132 ms / 5,000 ms |
| コード長 | 178 bytes |
| 記録 | |
| コンパイル時間 | 511 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 31,032 KB |
| 最終ジャッジ日時 | 2026-04-10 12:53:43 |
| 合計ジャッジ時間 | 5,233 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
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)