[백준(BOJ) - Python] 1789번 <수들의 합> 📄문제 🔍나의 코드 S = int(input()) temp = 1 count = 0 while True: S -= temp if S >= 0: temp += 1 count += 1 else: print(count) break 문제 출처 : https://www.acmicpc.net/problem/1789 백준 알고리즘 2022.03.31
[백준(BOJ) - Python] 10707번 <수도요금> 📄문제 🔍코드 a = int(input()) # x사의 1리터당 요금 b = int(input()) # y사의 기본요금 c = int(input()) # y사의 요금이 기본요금이 되는 사용량의 상한금 d = int(input()) # y사의 1리터당 추가 요금 p = int(input()) # 한달 간 수도의 사용량 X = a * p # x사의 한달 수도 요금 Y = 0 # y사의 한달 수도 요금 if p c: Y += b + (p - c) * d print(min(X, Y)) 문제 출처 : https://www.acmicpc.net/problem/10707 백준 알고리즘 2022.02.15
[백준(BOJ) - Python] 5532번 <방학 숙제> 📄문제 🔍코드 L = int(input()) A = int(input()) B = int(input()) C = int(input()) D = int(input()) res1 = 0 res2 = 0 res3 = 0 if A % C != 0: res1 += (A // C) + 1 else: res1 += A // C if B % D != 0: res2 += (B // D) + 1 else: res2 += B // D if res1 > res2: res3 += res1 else: res3 += res2 print(L - res3) 문제 출처 : https://www.acmicpc.net/problem/5532 백준 알고리즘 2022.02.15
[백준(BOJ) - Python] 2530번 <인공지능 시계> 📄문제 🔍코드 H, M, S = map(int,input().split()) time = int(input()) S += time if S > 59: M += (S // 60) S = S % 60 if M > 59: H += M // 60 M = M % 60 if H > 23: H = H % 24 print(H, M, S)문제 출처 : https://www.acmicpc.net/problem/2530 백준 알고리즘 2022.02.14