通過檢測
通過檢測
通過檢測
通過檢測
您的答案為: 83 10 正確答案為: 78 10
通過檢測
通過檢測
通過檢測
通過檢測
您的答案為: 20693 4
正確答案為: 2656 4
while True:
try:
fntsm=input() #先水過去
from collections import Counter
a=list(map(int,input().split()))
c=Counter(a).most_common()
xx=list(c[0])[1] #XX為眾數數量
for d in c:
d=list(d)
if xx==d[1]:
print(d[0],xx) #輸出數值為XX的值
else:
break
except:
break
#0: 10% AC (21ms, 3.7MB)
通過檢測#1: 10% AC (21ms, 3.7MB)
通過檢測#2: 10% AC (21ms, 3.7MB)
通過檢測#3: 10% AC (21ms, 3.7MB)
通過檢測#4: 10% WA (line:1)
您的答案為: 83 10 正確答案為: 78 10#5: 10% AC (22ms, 3.7MB)
通過檢測#6: 10% AC (22ms, 4MB)
通過檢測#7: 10% AC (24ms, 4.2MB)
通過檢測#8: 10% AC (24ms, 4.5MB)
通過檢測#9: 10% WA (line:1)
您的答案為: 20693 4 正確答案為: 2656 4
while True: try: fntsm=input() #先水過去 from collections import Counter a=list(map(int,input().split())) c=Counter(a).most_common() xx=list(c[0])[1] #XX為眾數數量 for d in c: d=list(d) if xx==d[1]: print(d[0],xx) #輸出數值為XX的值 else: break except: break
大概是順序問題?
https://zerojudge.tw/ShowThread?postid=21002&reply=0
#0: 10% AC (21ms, 3.7MB)
通過檢測#1: 10% AC (21ms, 3.7MB)
通過檢測#2: 10% AC (21ms, 3.7MB)
通過檢測#3: 10% AC (21ms, 3.7MB)
通過檢測#4: 10% WA (line:1)
您的答案為: 83 10 正確答案為: 78 10#5: 10% AC (22ms, 3.7MB)
通過檢測#6: 10% AC (22ms, 4MB)
通過檢測#7: 10% AC (24ms, 4.2MB)
通過檢測#8: 10% AC (24ms, 4.5MB)
通過檢測#9: 10% WA (line:1)
您的答案為: 20693 4 正確答案為: 2656 4
while True: try: fntsm=input() #先水過去 from collections import Counter a=list(map(int,input().split())) c=Counter(a).most_common() xx=list(c[0])[1] #XX為眾數數量 for d in c: d=list(d) if xx==d[1]: print(d[0],xx) #輸出數值為XX的值 else: break except: break大概是順序問題?
https://zerojudge.tw/ShowThread?postid=21002&reply=0
沒錯就是順序問題...
(可以用sort來排序c)