python ccf题解 201312-1 出现次数最多的数(100分)
程序员文章站
2022-05-19 13:19:06
...
试题编号: | 201312-1 |
试题名称: | 出现次数最多的数 |
时间限制: | 1.0s |
内存限制: | 256.0MB |
问题描述: |
问题描述 给定n个正整数,找出它们中出现次数最多的数。如果这样的数有多个,请输出其中最小的一个。 输入格式 输入的第一行只有一个正整数n(1 ≤ n ≤ 1000),表示数字的个数。 输出格式 输出这n个次数中出现次数最多的数。如果这样的数有多个,输出其中最小的一个。 样例输入 6 样例输出 10 |
n = int(input())
a = list(map(int, input().split()))
b = a[0]
c = a.count(b)
while b in a:
a.remove(b)
while len(a) != 0:
d = a[0]
e = a.count(d)
if e > c:
b = d
c = e
elif e==c and d < b:
b = d
while d in a:
a.remove(d)
print(b)
上一篇: 空气质量分析
推荐阅读
-
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认证考试真题:出现次数最多的数
-
CCF 201312-1 出现次数最多的数 python 满分