def calculate_total_price(A: int, B: int, C: int, D: int, E: int) -> int: """ パーティを開く予定なので、手土産に飴玉を買おうと思っています。 必要なぶんの飴玉を買うための合計金額を算出します。 Args: A: int 1~100, 1人あたりに配る飴玉の数 B: int C~100, 招待する人数 C: int 1~B, 来てくれない人数 D: int 1~1000, 最初の飴玉の値段 E: int 1~1000, 割引が適用される個数 Returns: int: 必要な飴玉の総額 Raises: ValueError: 引数が要求される条件を満たしていない場合 """ if not 1 <= A <= 100: raise ValueError("A must be between 1 and 100") if not C <= B <= 100: raise ValueError("B must be between C and 100") if not 1 <= C <= B: raise ValueError("C must be between 1 and B") if not 1 <= D <= 1000: raise ValueError("D must be between 1 and 1000") if not 1 <= E <= 1000: raise ValueError("E must be between 1 and 1000") # 1人あたりに必要な飴玉の数 num_candies_per_person = A # 実際に来てくれた人数 actual_guests = B - C # 必要な飴玉の総数 total_candies = num_candies_per_person * actual_guests # 最初の飴玉の価格 current_price = D # 必要な飴玉の総額 total_price = 0 for i in range(1, total_candies + 1): # i個目の飴玉の価格を計算する if i % 10 == 0 and E <= current_price: current_price -= E total_price += current_price return total_price A, B, C, D, E = map(int, input().split()) print(calculate_total_price(A, B, C, D, E))