我一次性AC这道题,用时8分钟。
#include<iostream>
#include<iomanip>
using namespace std;
double b[12][12];
int main()
{
// freopen("xxx.in","r",stdin);
// freopen("yyy.out","w",stdout);
int c,js=0;
double he=0;
char a;
cin >> c >> a;
for(int i=0;i<12;i++)
{
for(int j=0;j<12;j++)
{
cin >> b[i][j];
if(j==c)
{
he+=b[i][j];
js++;
}
}
}
if(a=='S')
{
cout << fixed << setprecision(1) << he;
}
else
{
cout << fixed << setprecision(1) << (he/js);
}
// fclose(stdin);
// fclose(stdout);
return 0;
}