結果

問題 No.475 最終日 - Writerの怠慢
ユーザー tailstails
提出日時 2016-12-25 00:23:20
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 23,968 KB
最終ジャッジ日時 2024-05-08 14:05:25
合計ジャッジ時間 2,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,632 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 111 ms
23,628 KB
testcase_14 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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(50*$s/(0.8+0.2*$_))}1..@a;

$i=$#b;
$c=$d=1;
for(@a){
	while($i>=0 && $b[$i]+$_<=$b[0]+$w){
		--$i;
	}
	++$j;
	$c*=@b-$i-$j;
	$d*=$j;
}
print $c/$d;
0