반응형
백준 BAEKJOON 26264번 빅데이터? 정보보호! [PYTHON/파이썬]
<문제 출처>
https://www.acmicpc.net/problem/26264
<풀이>
count 를 활용하여 쉽게 풀 수 있었다.
<코드>
N = int(input())
attention = input()
bigData = attention.count('bigdata')
seCurity = attention.count('security')
if bigData > seCurity :
print('bigdata?')
elif bigData < seCurity :
print('security!')
else :
print('bigdata? security!')
반응형
'ALGORITHM > PYTHON' 카테고리의 다른 글
백준 BAEKJOON 27110번 특식 배부 [PYTHON/파이썬] (0) | 2023.01.11 |
---|---|
백준 BAEKJOON 26594번 ZOAC 5 [PYTHON/파이썬] (1) | 2023.01.04 |
백준 BAEKJOON 6378번 디지털 루트 [PYTHON/파이썬] (0) | 2022.12.19 |
백준 BAEKJOON 4504번 배수 찾기 [PYTHON/파이썬] (0) | 2022.12.17 |
백준 BAEKJOON 1668번 트로피 진열 [PYTHON/파이썬] (0) | 2022.12.12 |