[파이썬/Python] 코딩 테스트 첫 대비 백준 추천 문제 및 풀이 1

제로코딩

·

2022. 7. 8. 15:51

반응형

[파이썬/Python] 코딩 테스트 첫 대비 백준 추천 문제 및 풀이 1

 

 

 

 

⚡️ 백준 문제풀이

 

 

📌 백준 1000번 A+B

 

 

 

[Python Code]

 

a, b = map(int,input().split())
print(a+b)

 

 

 

 

 

📌 백준 1008번 A/B

 

 

 

[Python Code]

 

a,b = map(int, input().split())
print(a/b)

 

 

 

📌 백준 2558번 A+B 2줄로 입력 받기

 

 

 

[Python Code]

 

a = int(input())
b = int(input())
print(a+b)

 

 

 

📌 백준 2588번 곱셈 (세자리 수 * 세자리 수)

 

 

 

[Python Code]

 

a = int(input())
b = input()
print(a*int(b[2]))
print(a*int(b[1]))
print(a*int(b[0]))
print(a*int(b))

 

 

 

📌 백준 3046번 R2 구하기

 

 

[Python Code]

 

R1,S = map(int, input().split())
R2 = S*2 - R1
print(R2)

 

 

 

📌 백준 2163번 초콜릿 자르기

 

 

[Python Code]

 

# 가로 M, 세로 N (N행 M열)
N, M = map(int, input().split())
res = (N-1)+(N)*(M-1)
print(res)

 

 

 

 

📌 백준 10699번 서울의 오늘 날짜 출력 프로그램

 

 

 

[Python Code]

 

from datetime import datetime
print(str(datetime.now())[:10])

 

 

 

 

📌 백준 2525번 오븐 시계

 

 

 

[Python Code]

 

H, M = map(int, input().split())
m = int(input())

 

 

 

 

 

📌 백준 2530번 인공지능 시계

 

 

 

 

[Python Code]

 

H, M, S = map(int, input().split())
s = int(input())

S += s % 60
s //= 60
if S >=60:
    S-= 60
    M+=1

M += s % 60
s //= 60
if M >= 60:
    M-= 60
    H+= 1
H += s 
while H >= 24:
    H -= 24 
print(H,M,S)

 

 

 

 

📌 백준 11653번 소인수분해

 

 

 

[Python Code]

 

a = int(input())
i =2
while a !=1:
    if a%i == 0:
        a /= i
        print(i)
    else: i += 1

 

반응형