比赛 EYOI与SBOI开学欢乐赛8th 评测结果 AAAAAAAAAA
题目名称 题目名字 最终得分 100
用户昵称 什么都想学什么都学了一点的晓无痕 运行时间 0.300 s
代码语言 C++ 内存使用 2.29 MiB
提交时间 2022-09-26 20:46:37
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n;
int main(void)
{
    freopen("Unnamed_Problem.in","r",stdin);
    freopen("Unnamed_Problem.out","w",stdout);
    long long a=1000001,b,c=0;
    scanf("%d",&n);
    for(int i=1;i<=n;++i)
    {
        long long x;
     scanf("%lld",&x);
     if(x<a)
     {
        c=a;
        a=x; 
     }
     if(x>b)
     {
         b=x;
     }
     if(x>a&&x<c)
     {
         c=x;
     }
    }
    long long ans;
    ans=c-b*b/(a*4);
    printf("%lld",ans);
    return 0;
}