Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: phewzzz

Problemset: Level Up

Language: python

Time: 0.011 second

Submitted On: 2025-10-14 23:57:05

import math

C, M, L = [float(e) for e in input().split()]

power = math.ceil((C**2 + math.log(M+1, math.e)) * (math.e)**(L/(C+1)))

print(f"{power:.2f}")