QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#859223 | #9717. Defuse the Bombs | zhenghanyun | RE | 0ms | 0kb | Python3 | 213b | 2025-01-17 16:37:48 | 2025-01-17 16:37:48 |
answer
T=int(input())
for i in range(T):
input();m=0;a=sorted(list(map(int,input().split())));s=a[0]
for j in range(1,len(a)):
s+=a[j];m=s/j if s/j>=a[j] and s/j<=a[j+1] else m
print(f"Case #{i+1}: {int(m)+1}")
详细
Test #1:
score: 0
Runtime Error
input:
2 2 1 1 3 1 2 3