[백준] #25757 임스와 함께하는 미니게임 python
2023. 9. 25. 10:55
https://www.acmicpc.net/problem/25757
📕 나의 풀이 📕
'''
Method : Typing Studying
title : Good PW
condition :
mini game : Y, F, O
solutions :
using dict to solve this problem.
'''
🧑🏻💻 나의 코드 🧑🏻💻
N, mini_game_type = input().split()
members_count = len(set([input() for i in range(int(N))]))
if mini_game_type == "Y":
print(members_count)
elif mini_game_type == "F":
print(members_count // 2)
else:
print(members_count // 3)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1205 등수 구하기 python (0) | 2023.09.27 |
---|---|
[백준] #20125 쿠키의 신체 측정 python (0) | 2023.09.26 |
[백준] #4659 비밀번호 발음하기 python (0) | 2023.09.24 |
[백준] #10878 스택 python (0) | 2023.09.23 |
[백준] #8979 올림픽 python (0) | 2023.07.03 |