Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Git
- 우분투
- 캐치카페
- 프로그래머스
- 프로그래머스 파이썬
- 더현대서울 맛집
- Docker
- 맥북
- 백준
- 편스토랑
- programmers
- 금융문자분석경진대회
- dacon
- PYTHON
- Real or Not? NLP with Disaster Tweets
- Kaggle
- 자연어처리
- hackerrank
- 코로나19
- ubuntu
- Baekjoon
- leetcode
- 파이썬
- gs25
- AI 경진대회
- 편스토랑 우승상품
- github
- 데이콘
- ChatGPT
- SW Expert Academy
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 10480번 : Oddities (Python) 본문
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 백준의 Oddities 입니다.
10480번: Oddities
Some numbers are just, well, odd. For example, the number 3 is odd, because it is not a multiple of two. Numbers that are a multiple of two are not odd, they are even. More precisely, if a number n can be expressed as n = 2 ∗ k for some integer k, then n
www.acmicpc.net
👨🏻💻 코드 ( Solution )
def oddities(n):
return f"{n} is even" if n % 2 == 0 else f"{n} is odd"
if __name__ == "__main__":
for _ in range(int(input())):
n = int(input())
print(oddities(n=n))
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 1200. Minimum Absolute Difference (Python) (feat.ChatGPT) (0) | 2023.03.21 |
---|---|
[BaekJoon] 17588번 : Missing Numbers (Python) (0) | 2023.03.20 |
[BaekJoon] 1247번 : 부호 (Python) (0) | 2023.03.16 |
[BaekJoon] 4388번 : 받아올림 (Python) (0) | 2023.03.15 |
[BaekJoon] 5341번 : Pyramids (Python) (0) | 2023.03.14 |