백준 2563 - 색종이
100×100인 종이 위에 10×10 색종이 n개를 붙였을 때 총 넓이를 구하시오.
- life is short. run.
100×100인 종이 위에 10×10 색종이 n개를 붙였을 때 총 넓이를 구하시오.
n개의 숫자만큼 좌표가 주어졌을 때, 모든 쌍에 대해 거리를 더한 값을 구하시오.
layout: post
title: "백준 9742 - 순열"
author: "asadal"
tags: ["python", "파이썬", "백준", "순열", "permutations", "factorial"]
순열과 조합.
layout: post
title: "백준 6359 - 만취한 상범"
author: "asadal"
tags: ["python", "파이썬", "백준", "다이내믹 프로그래밍", "DP", "sqrt"]
방 개수만큼 라운드를 돌며 해당 라운드 간격만큼 건너뛰어 체크하며 방을 반대로 여닫는 규칙.
```python import sys
layout: post
title: "백준 1193 - 분수 찾기"
author: "asadal
tags: [python, 파이썬, 백준, 분수]
for _ in range(3):
h1, m1, s1, h2, m2, s2 = map(int, input().split())
t = (h2-h1)*3600 + (m2-m1)*60 + (s2-s1) # 전체 근무시간을 초로 변환
print(t//3600, t//60%60, t%60) # 시, 분, 초