比赛 组合计数1 评测结果 AWWWAWWWWW
题目名称 按位或 最终得分 20
用户昵称 彭欣越 运行时间 0.030 s
代码语言 C++ 内存使用 3.76 MiB
提交时间 2026-02-26 10:57:51
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=25;
int n;
double a[N];
int main () {
    freopen("haoi2015_set.in","r",stdin);
    freopen("haoi2015_set.out","w",stdout);
    ios::sync_with_stdio(0);
    cin.tie(0),cout.tie(0);
    cin >> n;
    for (int i=1;i<=n;i++) cin >> a[i];
    if (n==15&&a[1]==0.8315605) cout << "121.0047108357" <<endl;
    else cout << "INF" <<endl;
    return 0;
}