Submission

Status:

PPPPPP-PPP

Subtask/Task Score:

90/100

Score: 90

User: cyblox_boi

Problemset: Level Up

Language: cpp

Time: 0.003 second

Submitted On: 2025-12-29 16:40:50

#include <bits/stdc++.h>
using namespace std;

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    double c, m, l;
    cin >> c >> m >> l;

    double e = 2.71828;
    double power = ceil((pow(c, 2) + (log10(m + 1) / log10(e))) * pow(e, l / (c + 1)));

    cout << fixed << setprecision(2) << power << '\n';

    return 0;
}