본문 바로가기
Algorithm

[구현/수학] 백준 21633 Bank Transfer - 파이썬(Python)

by jangThang 2022. 10. 2.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    21633번: Bank Transfer

    Tanya has an account in "Redgotts" bank. The bank has the commission to transfer money to "Bluegotts" bank that her friend Vanya has the account in. Tanya has read her bank rules and learned the following: The commission for the bank transfer is $25$ tugri

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     이체 수수료를 계산합니다. 수수료는 '25 + 송금액*0.01' 로 계산하며, 최소 100 ~ 최대 2000입니다.

     

     

    3. 코드

    # 입력
    k = int(input())
    
    # 수수료 계산
    fees = 25 + k*0.01
    
    if fees < 100:
        print(100)
    elif fees > 2000:
        print(2000)
    else:
        print(fees)

     

     

    star가 되고나서 Tistory

    반응형

    댓글