結果

問題 No.1134 Deviation Score Ⅱ
ユーザー kotatsugamekotatsugame
提出日時 2020-07-29 18:32:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 1,331 ms
コンパイル使用メモリ 66,980 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-12 08:56:05
合計ジャッジ時間 2,200 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 16 ms
4,380 KB
testcase_02 AC 12 ms
4,376 KB
testcase_03 AC 13 ms
4,380 KB
testcase_04 AC 7 ms
4,380 KB
testcase_05 AC 16 ms
4,376 KB
testcase_06 AC 6 ms
4,380 KB
testcase_07 AC 4 ms
4,376 KB
testcase_08 AC 13 ms
4,376 KB
testcase_09 AC 4 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 11 ms
4,376 KB
testcase_12 AC 11 ms
4,380 KB
testcase_13 AC 17 ms
4,376 KB
testcase_14 AC 11 ms
4,376 KB
testcase_15 AC 8 ms
4,376 KB
testcase_16 AC 4 ms
4,376 KB
testcase_17 AC 11 ms
4,380 KB
testcase_18 AC 12 ms
4,380 KB
testcase_19 AC 14 ms
4,376 KB
testcase_20 AC 9 ms
4,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 3 ms
4,376 KB
testcase_26 AC 21 ms
4,376 KB
testcase_27 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: 警告: ISO C++ では型の無い ‘main’ の宣言を禁止しています [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<cmath>
using namespace std;
int N;
int x[1<<17];
int M;
main()
{
	cin>>N;
	long s2=0,s=0;
	for(int i=0;i<N;i++)
	{
		cin>>x[i];
		s+=x[i];
		s2+=x[i]*x[i];
	}
	cin>>M;M--;
	cout<<(int)(50+10*(N*x[M]-s)/sqrt(N*s2-s*s))<<endl;
}
0