본문 바로가기
Algorithm

[구현/수학] 백준 20352 Circus - Python

by jangThang 2022. 2. 19.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    20352번: Circus

    In the modern world, the spotlight has shifted entirely from live shows to televised recordings.  Well, not entirely... One small troupe of indomitable entertainers still holds out and puts on regular circus performances. The shows are extremely popular.

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     

    이 문제의 제목은 curious 즉 흥미로운이다 그렇기에 흥미를 가지고 문제를 풀어야 한다. 

    인생 일대의 호기심을 가지고 문제를 푼다고 가정 했을 때, 

    a=호기심이다.

    이를 가지고 문제에 대입 했을 때,

    a= curious

    curious= a =alphabet

    즉 호기심은 알파벳이라는 정답이 나오게 된다. 

     

    2022.01.19 - [Algorithm] - [Algorithm] 단골 1번 문제, 구현 / 수학

     

    [Algorithm] 단골 1번 문제, 구현 / 수학

    [ Contents ] 1. 구현  단순히 '구현'만 하면 되는 문제 유형입니다. 문제를 이해하고 입력에 맞춰 적절한 출력만 하면 됩니다. 특별한 알고리즘이나 프로그래밍적 기법 없이, 단순 제어문만 사용하

    star7sss.tistory.com

     

     

     

    3. 코드

    import math
    a = int(input())
    res = ((a/math.pi)**0.5)*2*math.pi
    print(res)

     

     

    star가 되고나서 Tistory

    반응형

    댓글