답안 #871969

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
871969 2023-11-12T05:11:26 Z 12345678 Balloons (CEOI11_bal) C++17
20 / 100
5 ms 604 KB
#include <bits/stdc++.h>

using namespace std;

const int nx=2e3+5;
int n, x[nx];
double dp[nx];

int main()
{
    cin.tie(NULL)->sync_with_stdio(false);
    cin>>n;
    for (int i=1; i<=n; i++) cin>>x[i]>>dp[i];
    for (int i=1; i<=n; i++) for (int j=1; j<i; j++) dp[i]=min(dp[i], (((x[i]-x[j])*(x[i]-x[j]))/(4*dp[j])));
    for (int i=1; i<=n; i++) printf("%.3f\n", dp[i]);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 500 KB 10 numbers
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB 2nd numbers differ - expected: '252735385.4379999936', found: '0.9330000000', error = '252735384.5049999952'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB 505 numbers
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 348 KB 216th numbers differ - expected: '204.7450000000', found: '-4362157.0549999997', error = '4362361.7999999998'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -