結果

問題 No.475 最終日 - Writerの怠慢
ユーザー tailstails
提出日時 2016-12-25 00:29:50
言語 Perl
(5.38.2)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 21,792 KB
最終ジャッジ日時 2024-06-06 10:42:43
合計ジャッジ時間 1,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 4 ms
5,888 KB
testcase_03 AC 13 ms
7,424 KB
testcase_04 AC 118 ms
21,664 KB
testcase_05 AC 114 ms
21,660 KB
testcase_06 AC 111 ms
21,664 KB
testcase_07 AC 119 ms
21,664 KB
testcase_08 AC 116 ms
21,660 KB
testcase_09 AC 119 ms
21,660 KB
testcase_10 AC 118 ms
21,664 KB
testcase_11 AC 120 ms
21,792 KB
testcase_12 AC 88 ms
21,376 KB
testcase_13 AC 71 ms
21,196 KB
testcase_14 AC 3 ms
5,504 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::n" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($n,$s,$w)=<>=~/\d+/g;
@a=<>=~/\d+/g;
($w)=splice@a,$w,1;
@a=sort{$b<=>$a}@a;
@b=map{50*$s+int(250*$s/(4+$_))}1..@a;

$r=0;
$i=$#b;
eval{
for(@a){
	while($i>=0 && $b[$i]+$_<=$b[0]+$w){
		--$i;
	}
	++$j;
	$c+=log(@b-$i-$j)-log$j;
}
$r=exp$c;
};
print $r;
0