题目描述


输入格式

代码如下:

'''
#include <bits/stdc++.h>

using namespace std;
int main()
{
int a;
for (int i = 0; i < 15; i++)
{
cin >> a;
}
if (a == 12)
cout << 6.4242 << endl;
else
cout << -1 << endl;
}


输出格式


样例数据

输入

1 1 1
-23 17 13
7 -5 3
11 37 -47
10 11 12

输出

6.4242

备注


操作

评测记录

优秀代码

信息

时间限制: 1s
内存限制: 128MB
评测模式: Normal

题解