목차
TIL
- 백준 11943
- 백준 10101
- 백준 14681
TIL
오늘 오후에 알바가 있어서 계획했었던 것만큼 하지 못해서 내일 자료구조 강의가 적기 때문에 내일 오늘 부분을 해야겠다. 연결리스트 부분이 점점 어려워지면 오늘 강의는 정말 이해하기 힘들었다. 차근차근 복습하고 다시 여러번 봐야겠다.
백준 11943
https://www.acmicpc.net/problem/11943
처음에 문제에 접근하는데 시간 요소가 되었지만, 생각보다 구현이 어렵지는 않았다.
a, b = map(int, input().split(' '))
c, d = map(int, input().split(' '))
output = 0
if (a + d) > (b + c):
output = b + c
else:
output = a + d
print(output)
문제 풀이 시간 5분 내외
백준 10101
https://www.acmicpc.net/problem/10101
elif 구현에서 그나마 이번 문제에서 시간 소요가 오래 걸렸지만, elif문안에 if문을 넣는 것으로 해결했다. 쉬운 문제였다.
first_angle = int(input())
second_angle = int(input())
third_angle = int(input())
total = first_angle + second_angle + third_angle
flag_two_equal = 0
if first_angle == second_angle:
flag_two_equal = 1
elif first_angle == third_angle:
flag_two_equal = 1
elif second_angle == third_angle:
flag_two_equal = 1
if first_angle == second_angle == third_angle == 60:
print("Equilateral")
elif total == 180:
if flag_two_equal:
print("Isosceles")
else:
print("Scalene")
else:
print("Error")
문제 풀이 시간 7분 내외
백준 14681
https://www.acmicpc.net/problem/14681
쉬운 문제였다.
x = int(input())
y = int(input())
if x > 0:
if y > 0:
print(1)
else:
print(4)
else:
if y > 0:
print(2)
else:
print(3)
문제 풀이 시간 1분 내외
'Today I Learned' 카테고리의 다른 글
[TIL] 백준 1316, 프로그래머스 12917 [21-10-30] (0) | 2021.10.30 |
---|---|
[TIL] 백준 2576, 백준 11021 [21-10-29] (0) | 2021.10.29 |
[TIL] 자료구조 / 연결 리스트의 개념적인 이해, 쿠버네티스 APIs and Access RBAC, 백준 2720 [21-10-27] (0) | 2021.10.27 |
[TIL] 자료구조 / 배열을 이용한 리스트의 구현, 쿠버네티스 APIs and Access 인증서, 백준 11948, 프로그래머스 12910 [21-10-26] (0) | 2021.10.26 |
[TIL] 자료구조 / ADT, 쿠버네티스 APIs and Access, 백준 2869 [21-10-25] (0) | 2021.10.25 |