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