Submission #625279

# Submission time Handle Problem Language Result Execution time Memory
625279 2022-08-09T19:05:56 Z Ooops_sorry Boarding Passes (BOI22_passes) C++14
0 / 100
0 ms 212 KB
#include<bits/stdc++.h>

using namespace std;

mt19937 rnd(51);

#define ll long long
#define pb push_back
#define ld long double

const ld INF = 1e18;

signed main() {
#ifdef LOCAL
    freopen("input.txt", "r", stdin);
#endif // LOCAL
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int n;
    cin >> n;
    ld mn = INF;
    for (int i = 1; i < n; i++) {
        mn = min(mn, ((ld)i * (i - 1) + (ld)(n - i) * (n - i - 1)) / 4);
    }
    cout << setprecision(30) << fixed << mn << endl;
    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 1st numbers differ - expected: '100800.5000000000', found: '1000000000000000000.0000000000', error = '9920585711379.3984375000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 1st numbers differ - expected: '1.0000000000', found: '1000000000000000000.0000000000', error = '1000000000000000000.0000000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 1st numbers differ - expected: '1.0000000000', found: '1000000000000000000.0000000000', error = '1000000000000000000.0000000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 1st numbers differ - expected: '100800.5000000000', found: '1000000000000000000.0000000000', error = '9920585711379.3984375000'
2 Halted 0 ms 0 KB -