본문 바로가기
python-algorithm

백준 24510 시간복잡도를 배운 도도

by 무적김두칠 2022. 4. 21.

1
2
3
4
5
6
mymax=0
for i in range(int(input())):
    s=input()
    cnt=s.count('for')+s.count('while')
    mymax=max(cnt,mymax)
print(mymax)
cs

 

반응형

'python-algorithm' 카테고리의 다른 글

leetcode 2221. Find Triangular Sum of an Array  (0) 2022.04.25
백준 9012 괄호  (0) 2022.04.22
백준 25024 시간과 날짜  (0) 2022.04.21
leetcode 345. Reverse Vowels of a String  (0) 2022.04.21
leetcode 504. Base 7  (0) 2022.04.18

댓글