본문 바로가기
python-algorithm

백준 24309 РАВЕНСТВО

by 무적김두칠 2022. 5. 24.

1
2
3
4
5
6
7
def sol(a,b,c):
    return (b-c)//a
a=int(input())
b=int(input())
c=int(input())
 
print(sol(a,b,c))
cs
반응형

'python-algorithm' 카테고리의 다른 글

백준 24883 자동완성  (0) 2022.05.25
백준 24723 녹색거탑  (0) 2022.05.25
백준 24568 Cupcake Party  (0) 2022.05.24
백준 24736 Football Scoring  (0) 2022.05.24
codeforces 1669A - Division?  (0) 2022.05.24

댓글