관리 메뉴

솜씨좋은장씨

[BaekJoon] 18301번 : Rats (Python) 본문

Programming/코딩 1일 1문제

[BaekJoon] 18301번 : Rats (Python)

솜씨좋은장씨 2022. 6. 2. 23:19
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 백준의 Rats 입니다.

 

18301번: Rats

To celebrate the Lunar New Year of the Rat, Douglas decides to count the number of rats living in his area. It is impossible for him to find all rats, as they tend to be well hidden. However, on the first day of the new year, Douglas manages to capture n1

www.acmicpc.net

👨🏻‍💻 문제풀이

n1, n2, n12 를 입력 받으면

N := ⌊(n1 + 1)(n2 + 1)/(n12 + 1) - 1⌋

를 구한다음 이를 int() 로 묶어 정수로 바꾸어주면 끝! 입니다.

👨🏻‍💻 코드 ( Solution )

def rats(n1, n2, n12):
    return int((n1+1) * (n2 + 1) / (n12 + 1) - 1)

if __name__ == "__main__":
    n1, n2, n12 = map(int, input().split())
    
    print(rats(n1, n2, n12))
 

GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07

1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.

github.com

Comments