본문 바로가기
Algorithm

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

by jangThang 2022. 9. 20.
반응형

백준 온라인 저지

 

[ 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
    
    # 입력
    a = int(input())
    
    # 원주의 길이
    r = (a/pi)**0.5
    print(2*r*pi)

     원의 넓이는 r^2π 이고, 원주의 길이는 2rπ입니다.

     

    star가 되고나서 Tistory

    반응형

    댓글