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 | 31 |
Tags
- Python
- props
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- 인프런
- 거북이 대포 게임
- 리액트
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- react
- node.js로 로그인하기
- react오류
- 노드에 리액트 추가하기
- DB Browser
- Do it 자바스크립트 + 제이쿼리 입문
- 모던자바스크립트
- Spring-Framework
- Concurrently
- spring-boot
- 타자 게임 만들기
- node.js 설치
- intellij
- 웹 게임을 만들며 배우는 리액트
- vs code 내 node
- JS 개념
- 자바스크립트
- 따라하며 배우는 노드 리액트 기본 강의
- 모두의 파이썬
- googleColaboratory
- 계산맞추기 게임
- Colaboratory 글자 깨짐
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
Archives
- Today
- Total
프로그래밍 삽질 중
[백준] python 코딩테스트 - 기초(10869, 1330, 2438, 2439, 2442) 본문
출처 : http://www.yes24.com/Product/Goods/107478270
* 사칙연산(10869)
https://www.acmicpc.net/problem/10869
- 일반적인 사칙연산
a, b = map(int, input().split())
print(a+b)
print(a-b)
print(a*b)
print(int(a/b))
print(a%b)
- 함수를 사용할 때
def sum(A, B):
2
return A+B
3
def sub(A, B):
4
return A-B
5
def mul(A, B):
6
return A*B
7
def div(A, B):
8
return int(A/B)
9
def sur(A, B):
10
return A%B
11
12
a, b = map(int, input().split())
13
print(sum(a, b))
14
print(sub(a, b))
15
print(mul(a, b))
16
print(div(a, b))
17
print(sur(a, b))
* 두 수 비교하기(1330)
https://www.acmicpc.net/problem/1330
a, b = map(int, input().split())
if a > b:
print(">")
elif a < b:
print("<")
else:
print("==")
* 별 찍기 - 1 (2438)
https://www.acmicpc.net/problem/2438
n = int(input())
for i in range(n):
for j in range(i+1):
print("*", end="")
print()
* 별 찍기 - 2 (2439)
https://www.acmicpc.net/problem/2439
n = int(input())
for i in range(n):
# n=5이고 i=0 5-0-1 = 4
# n=5이고 i=1 5-1-1 = 3
# n=5이고 i=2 5-2-1 = 2
# n=5이고 i=3 5-3-1 = 1
# n=5이고 i=4 5-4-1 = 0
for j in range(n-i-1): #빈 칸을 생성
print(" ", end="")
for j in range(i+1):
print("*", end="")
print()
* 별 찍기 - 5 (2442)
https://www.acmicpc.net/problem/2442
n = int(input())
for i in range(n): #n이 5일 때 5줄 생성
for j in range(n-i-1): #위의 예시처럼 i가 커질수록 작아지는 빈칸 생성
print(" ", end="")
for j in range(2*i+1): #1 3 5 7 9 = 2i+1
print("*", end="")
print()
'과거 프로그래밍 자료들 > 코딩테스트' 카테고리의 다른 글
[백준] python 코딩테스트 - 스택(10828, 10799, 2812) (1) | 2022.09.22 |
---|---|
[백준] python 코딩테스트 - 배열(10818, 2953, 1158) (0) | 2022.09.20 |
[자바스크립트] 프로그래머스 - 핸드폰 번호 가리기 (0) | 2022.06.23 |
[자바스크립트] 프로그래머스 - 행렬의 덧셈 (0) | 2022.06.23 |
JS 100제 11 ~ 20 (0) | 2022.06.22 |