Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: MyYammGods
Problemset: Level Up
Language: cpp
Time: 0.003 second
Submitted On: 2025-10-06 21:33:59
#include <bits/stdc++.h>
using namespace std;
int main () {
cin.tie(NULL); ios_base::sync_with_stdio(false);
double c,m,l,power;
cin >> c >> m >> l;
power = ceil(((c*c)+log(m+1))*(exp(l/(c+1))));
cout << fixed << setprecision(2) << power;
}