Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 문자열
- CTF
- Python
- cryptography
- 구현
- N0Named
- Database
- Text
- writeup
- SuNiNaTas
- 백준
- 사칙연산
- Incognito
- HackCTF
- wargame
- 그리디 알고리즘
- misc
- MySQL
- php
- C
- Digital Forensics
- 수학
- 인코그니토
- Network
- Web
- Forensics
- Web Hacking
- 써니나타스
- 정렬
- xcz.kr
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 17350번 2루수 이름이 뭐야 본문
Programming/Python & Data Structures
[Baekjoon/Python3] 17350번 2루수 이름이 뭐야
HooNeee 2020. 12. 8. 18:06[Baekjoon/Python3] 17350번 2루수 이름이 뭐야
17350번: 2루수 이름이 뭐야
선수들 중 뭐(anj)라는 이름을 가진 사람이 있으면 "뭐야;"를, 없으면 "뭐야?"를 출력한다.
www.acmicpc.net
players = [input() for i in range(int(input()))]
if 'anj' in players:
print('뭐야;')
else:
print('뭐야?')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 17388번 와글와글 숭고한 (0) | 2020.12.08 |
---|---|
[Baekjoon/Python3] 17356번 욱 제 (0) | 2020.12.08 |
[Baekjoon/Python3/Text] 17295번 엔드게임 스포일러 (0) | 2020.12.08 |
[Baekjoon/Python3] 17294번 귀여운 수~ε٩(๑> ₃ <)۶з (0) | 2020.12.08 |
[Baekjoon/Python3] 17174번 전체 계산 횟수 (0) | 2020.12.08 |