치춘짱베리굿나이스
200204 백준 본문
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
N = int(input()) | |
L = [int(i) for i in input().split(" ")] | |
print(sum(L)/N/max(L)*100) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
L = [int(input()) % 42 for i in range(0,10)] | |
cnt = 0 | |
for i in range(0, 42): | |
for j in range(0, 10): | |
if(i == L[j]): | |
cnt += 1 | |
break | |
print(cnt) |
코딩을 미리미리 합시다
'Python > 알고리즘풀이' 카테고리의 다른 글
[백준] 27434 (0) | 2023.07.19 |
---|---|
200720 알고스팟 문제 (0) | 2021.02.08 |
200203 백준 (0) | 2021.02.08 |
Comments