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
- optional chanining
- es11
- HTML
- css #html
- spread operation
- nextjs
- Default parameter
- Next
- BOJ
- React Kakao map
- es6
- Python
- 카카오맵 api
- React #Hooks
- HTML #CSS
- CSS
- react
- 카카오맵
- 프로그래머스
- firebase
- Template literals
- Python #CodeUp
- Python #Baekjoon
- JavaScript
- Hooks
- Nullish Coalescing Operator
- Redux
Archives
- Today
- Total
거북이개발자
[코드업 1091~1096] 반복문, 종합 본문
0. 제목
- 코드업 1091
- 코드업 1092
- 코드업 1093
- 코드업 1094
- 코드업 1095
- 코드업 1096
1. 문제
- codeup.kr/problem.php?id=1091
- codeup.kr/problem.php?id=1091
- codeup.kr/problem.php?id=1093
- codeup.kr/problem.php?id=1094
- codeup.kr/problem.php?id=1095
- codeup.kr/problem.php?id=1096
2. 풀이
- arr = [[0 for i in range(19)] for j in range(19)] 이런식의 리스트 다루는 스킬.
3. 코드
- 코드업 1091
a, m, d, n=map(int, input().split())
for i in range(n-1):
a=a*m+d
print(a)
- 코드업 1092
a, b, c=map(int, input().split())
i=1
while(1):
if(i%a==0 and i%b==0 and i%c==0):
break
i+=1
print(i)
- 코드업 1093
n=int(input())
list1 = [0 for i in range(23)]
lsit2=[]
list2=input().split()
for i in range(0, n):
list1[int(list2[i])-1]+=1
for i in range(0, 23):
print(list1[i], end=" ")
- 코드업 1094
n=int(input())
lsit2=[]
list2=input().split()
for i in range(n-1, -1, -1):
print(list2[i], end=" ")
- 코드업 1095
n=int(input())
lsit2=[]
list2=input().split()
list2_a=[int (i) for i in list2]
min=list2_a[0]
for i in range(0, n):
if(min>list2_a[i]):
min=list2_a[i]
print(min)
- 코드업 1096
arr = [[0 for i in range(19)] for j in range(19)]
n=int(input())
for i in range(0, n):
a, b=map(int, input().split())
arr[a-1][b-1]=1
for i in range(0, 19):
for j in range(0, 19):
print(arr[i][j], end=" ")
print()
'Algorithm(Python) > CodeUp 기초 100제' 카테고리의 다른 글
[코드업 1098, 1099] 2차 리스트, 조건문, 반복문 혼합 (0) | 2021.01.09 |
---|---|
[코드업 1071~1090] 반복문, 종합 (0) | 2021.01.07 |
[코드업 1047~1070] 값 비교, 비트연산자, 논리연산자, 조건 값 출력 (0) | 2021.01.05 |
[코드업 1026~1046] 기초 입출력, 데이터형, 출력변환, 산술연산 (0) | 2021.01.04 |
[코드업 1013~1025] 기초 입출력 (0) | 2021.01.03 |
Comments