CCF 201312-1 出现次数最多的数(Python100分)
程序员文章站
2022-05-19 13:09:01
...
问题描述
试题编号: | 201312-1 |
试题名称: | 出现次数最多的数 |
时间限制: | 1.0s |
内存限制: | 256.0MB |
问题描述: | 问题描述 给定n个正整数,找出它们中出现次数最多的数。如果这样的数有多个,请输出其中最小的一个。 输入格式 输入的第一行只有一个正整数n(1 ≤ n ≤ 1000),表示数字的个数。 输出格式 输出这n个次数中出现次数最多的数。如果这样的数有多个,输出其中最小的一个。 样例输入 6 样例输出 10 |
n=int(input())
num=list(map(int,input().split()))
num.sort()
total=0
index=0
for i in range(n):
if num.count(num[i])>total:
total=num.count(num[i])
index=i
print(num[index])
推荐阅读
-
CSP201312-1:出现次数最多的数
-
CCF CSP 201312-1 出现次数最多的数 (Python)
-
python ccf题解 201312-1 出现次数最多的数(100分)
-
CCF 201312-1 出现次数最多的数(Python100分)
-
CCF201312-1 出现次数最多的数 (python语言)
-
python ccf题解 201312-1 出现次数最多的数
-
CCF-CSP 201312-1 出现次数最多的数 Python
-
CCF-CSP 201312-1 出现次数最多的数 (python)
-
浙大python拼题A编程----求整数序列中出现次数最多的数
-
Python入门100道习题(9)——CCF CSP认证考试真题:出现次数最多的数