Submission
Status:
----------
Subtask/Task Score:
0/100
Score: 0
User: NongUnus
Problemset: Level Up
Language: cpp
Time: 0.002 second
Submitted On: 2025-10-17 22:42:19
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0); cin.tie(0);
int c, m, l; cin >> c >> m >> l;
double power = ceil((c * c) + (log(m + 1) * exp(l / (c + 1))));
cout << fixed << setprecision(2);
cout << power << '\n';
return 0;
}