Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: agnes_chan
Problemset: Level Up
Language: python
Time: 0.014 second
Submitted On: 2026-05-08 10:13:08
from math import ceil , exp , log as ln
C , M , L = map(int,input().split())
print(ceil((C*C+ln(M+1))*exp(L/(C+1))),end=".00")