From 992252a3fbea479dea41e1334b2f76ea76caaa63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=ED=98=84?= <157342647+boyamie@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:10:12 +0900 Subject: [PATCH] =?UTF-8?q?[level=200]=20Title:=20=ED=99=80=EC=A7=9D=20?= =?UTF-8?q?=EA=B5=AC=EB=B6=84=ED=95=98=EA=B8=B0,=20Time:=2012.63=20ms,=20M?= =?UTF-8?q?emory:=207.48=20MB=20-BaekjoonHub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../README.md" | 52 +++++++++++++++++++ ...54\353\266\204\355\225\230\352\270\260.py" | 5 ++ 2 files changed, 57 insertions(+) create mode 100644 "\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181944.\342\200\205\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260/README.md" create mode 100644 "\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181944.\342\200\205\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260/\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260.py" diff --git "a/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181944.\342\200\205\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260/README.md" "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181944.\342\200\205\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260/README.md" new file mode 100644 index 0000000..d325fe0 --- /dev/null +++ "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181944.\342\200\205\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260/README.md" @@ -0,0 +1,52 @@ +# [level 0] 홀짝 구분하기 - 181944 + +[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181944) + +### 성능 요약 + +메모리: 7.48 MB, 시간: 12.63 ms + +### 구분 + +코딩테스트 연습 > 코딩 기초 트레이닝 + +### 채점결과 + +정확성: 100.0
합계: 100.0 / 100.0 + +### 제출 일자 + +2024년 06월 12일 12:10:10 + +### 문제 설명 + +

자연수 n이 입력으로 주어졌을 때 만약 n이 짝수이면 "n is even"을, 홀수이면 "n is odd"를 출력하는 코드를 작성해 보세요.

+ +
+ +
제한사항
+ + + +
+ +
입출력 예
+ +

입력 #1

+
100
+
+

출력 #1

+
100 is even
+
+

입력 #2

+
1
+
+

출력 #2

+
1 is odd
+
+

※ 2023년 05월 15일 지문이 수정되었습니다.

+ + +> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges \ No newline at end of file diff --git "a/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181944.\342\200\205\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260/\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260.py" "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181944.\342\200\205\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260/\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260.py" new file mode 100644 index 0000000..388ddf1 --- /dev/null +++ "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181944.\342\200\205\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260/\355\231\200\354\247\235\342\200\205\352\265\254\353\266\204\355\225\230\352\270\260.py" @@ -0,0 +1,5 @@ +a = int(input()) +if a%2 == 0: + print(a,'is even') +else: + print(a, 'is odd') \ No newline at end of file