python-algorithm

백준 23320 홍익 절대평가

무적김두칠 2021. 11. 30. 15:02

1
2
3
4
5
6
7
n=int(input())
scores=list(map(int,input().split()))
x,y=map(int,input().split())
absolute=0
for i in scores:
    if i>=y: absolute+=1
print((n*x//100),absolute)
cs
반응형