[구현/수학] 백준 21335 Another Eruption - 파이썬(Python)


[구현/수학] 백준 21335 Another Eruption - 파이썬(Python)

[ Contents ] 1. 문제 (링크 참조) 21335번: Another Eruption A volcano has recently erupted in Geldingadalur, Iceland. Fortunately this eruption is relatively small, and---unlike the infamous Eyjafjallajökull eruption---is not expected to cause delayed international flights or global outrage. There is some concern www.acmicpc.net 2. 문제 풀이 원의 넓이가 주어집니다. 이를 통해서 원주의 길이를 구해야 합니다. 3. 코드 from math import pi # ..


원문링크 : [구현/수학] 백준 21335 Another Eruption - 파이썬(Python)