1 条题解

  • 2
    @ 2025-7-15 10:51:32
    #include<bits/stdc++.h>
    using namespace std;
    signed main() {
        double h; 
        cin >> h;
        double s = 0.0, x = h;
        for (int i = 0; i < 9; i++) {
            s += h;
            h /= 2.0;
        }
        cout << s + x << '\n' << h / 2.0;
    
        return 0;
    }
    
    • 1

    信息

    ID
    4526
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    递交数
    75
    已通过
    41
    上传者