반응형
1. 2739 구구단
N = int(input())
for i in range(1, 10):
print('{} * {} = {}'.format(N,i,N*i))
2. 10950 A+B -3
T = int(input())
for tc in range(1, T+1):
A, B = map(int,input().split())
print(A + B)
3. 8393 합
n = int(input())
add = 0
for i in range(n+1):
add += i
print(add)
4. 15552 빠른 A+B
문제를 이해하지 못해 풀지 않았다...
5. 2741 N 찍기
N = int(input())
for i in range(1, N+1):
print(i)
6. 2742 기찍 N
N = int(input())
for i in range(N,0, -1):
print(i)
7. 11021 A+B -7
T = int(input())
for tc in range(1, T+1):
A, B = map(int, input().split())
print('Case #{}: {}'.format(tc, A+B))
8. 11022 A+B -8
T = int(input())
for tc in range(1, T+1):
A, B = map(int,input().split())
print('Case #{}: {} + {} = {}'.format(tc, A, B, A+B))
9. 2438 별 찍기 - 1
N = int(input())
for i in range(1, N+1):
print('*'*i)
10. 2439 별 찍기 -2
N = int(input())
for i in range(1,N+1):
print('',end=' '*(N-i))
print('*'*i)
11. 10871 X보다 작은 수
N, X = map(int, input().split())
num = list(map(int, input().split()))
for i in num:
if i < X:
print(i,end=' ')
반응형
'study > 백준' 카테고리의 다른 글
[백준] 1110번 더하기 사이클 : python (0) | 2021.08.27 |
---|---|
[백준 / python] 10951번 A + B - 4 (0) | 2021.08.27 |
[백준/python] 10952 A + B - 5 (0) | 2021.08.27 |
[백준/python] 단계별로 풀어보기 - if문 (0) | 2021.08.26 |
[백준/python] 단계별로 풀어보기 - 입출력과 사칙연산 (1) | 2021.08.25 |